geolocation-8.x-3.x-dev/js/Base/GeolocationGeometry.js
js/Base/GeolocationGeometry.js
/**
* @prop {string} type
* @prop { number[] | number[][] | number[][][] | number[][][][]} coordinates
*/
export class GeolocationGeometry {
/**
* @param {string} type
* @param {array} coordinates
*/
constructor(type, coordinates) {
this.type = type;
this.coordinates = coordinates;
}
}
