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