20 lines
525 B
JavaScript
20 lines
525 B
JavaScript
// node_modules/ol/geom/flat/length.js
|
|
function lineStringLength(flatCoordinates, offset, end, stride) {
|
|
let x1 = flatCoordinates[offset];
|
|
let y1 = flatCoordinates[offset + 1];
|
|
let length = 0;
|
|
for (let i = offset + stride; i < end; i += stride) {
|
|
const x2 = flatCoordinates[i];
|
|
const y2 = flatCoordinates[i + 1];
|
|
length += Math.sqrt((x2 - x1) * (x2 - x1) + (y2 - y1) * (y2 - y1));
|
|
x1 = x2;
|
|
y1 = y2;
|
|
}
|
|
return length;
|
|
}
|
|
|
|
export {
|
|
lineStringLength
|
|
};
|
|
//# sourceMappingURL=chunk-JFXZSSOM.js.map
|