geolocation-8.x-3.x-dev/js/Base/GeolocationShapeMultiLine.js
js/Base/GeolocationShapeMultiLine.js
import { GeolocationShape } from "./GeolocationShape.js";
/**
* @prop {GeolocationGeometry} geometry
*/
export class GeolocationShapeMultiLine extends GeolocationShape {
constructor(geometry, settings = {}, map) {
super(geometry, settings, map);
this.type = "multiline";
}
}
