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