import length from "./length.js"; | |
var coordinates = [null, null], | |
object = {type: "LineString", coordinates: coordinates}; | |
export default function(a, b) { | |
coordinates[0] = a; | |
coordinates[1] = b; | |
return length(object); | |
} | |
import length from "./length.js"; | |
var coordinates = [null, null], | |
object = {type: "LineString", coordinates: coordinates}; | |
export default function(a, b) { | |
coordinates[0] = a; | |
coordinates[1] = b; | |
return length(object); | |
} | |