@geogirafe/lib-geoportal
Version:
GeoGirafe is a flexible application to build online geoportals.
29 lines (28 loc) • 759 B
JavaScript
export class MapContextMenuState {
constructor() {
Object.defineProperty(this, "position", {
enumerable: true,
configurable: true,
writable: true,
value: null
});
Object.defineProperty(this, "projection", {
enumerable: true,
configurable: true,
writable: true,
value: null
});
Object.defineProperty(this, "crs", {
enumerable: true,
configurable: true,
writable: true,
value: []
});
Object.defineProperty(this, "sources", {
enumerable: true,
configurable: true,
writable: true,
value: []
});
}
}