Skip to content
Snippets Groups Projects

Inital widget support

Files

+ 14
0
/**
* @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;
}
}
Loading