@artstesh/maps 4.1.26 → 4.1.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm2020/map/map-plate/layers/image-layer/image-layer-factory.mjs +26 -0
- package/dist/esm2020/map/map-plate/layers/image-layer/image-layer.component.mjs +49 -0
- package/dist/esm2020/map/map-plate/layers/image-layer/image-layer.settings.mjs +136 -0
- package/dist/esm2020/map/map-plate/layers/index.mjs +3 -1
- package/dist/esm2020/map/map.module.mjs +8 -3
- package/dist/esm2020/map/messages/commands/add-image-layer.command.mjs +9 -0
- package/dist/esm2020/map/messages/commands/remove-image-layer.command.mjs +9 -0
- package/dist/esm2020/map/services/map-management.service.mjs +16 -1
- package/dist/esm2020/map/services/message-registrator.service.mjs +5 -1
- package/dist/esm2020/src/map/map-plate/layers/image-layer/image-layer-factory.mjs +26 -0
- package/dist/esm2020/src/map/map-plate/layers/image-layer/image-layer.component.mjs +49 -0
- package/dist/esm2020/src/map/map-plate/layers/image-layer/image-layer.settings.mjs +136 -0
- package/dist/esm2020/src/map/map-plate/layers/index.mjs +3 -1
- package/dist/esm2020/src/map/map.module.mjs +8 -3
- package/dist/esm2020/src/map/messages/commands/add-image-layer.command.mjs +9 -0
- package/dist/esm2020/src/map/messages/commands/remove-image-layer.command.mjs +9 -0
- package/dist/esm2020/src/map/services/map-management.service.mjs +16 -1
- package/dist/esm2020/src/map/services/message-registrator.service.mjs +5 -1
- package/dist/fesm2015/maps-components-src-map.mjs +236 -3
- package/dist/fesm2015/maps-components-src-map.mjs.map +1 -1
- package/dist/fesm2015/maps-components.mjs +236 -3
- package/dist/fesm2015/maps-components.mjs.map +1 -1
- package/dist/fesm2020/maps-components-src-map.mjs +236 -3
- package/dist/fesm2020/maps-components-src-map.mjs.map +1 -1
- package/dist/fesm2020/maps-components.mjs +236 -3
- package/dist/fesm2020/maps-components.mjs.map +1 -1
- package/dist/map/map-plate/layers/image-layer/image-layer-factory.d.ts +9 -0
- package/dist/map/map-plate/layers/image-layer/image-layer.component.d.ts +22 -0
- package/dist/map/map-plate/layers/image-layer/image-layer.settings.d.ts +97 -0
- package/dist/map/map-plate/layers/index.d.ts +2 -0
- package/dist/map/map.module.d.ts +3 -2
- package/dist/map/messages/commands/add-image-layer.command.d.ts +8 -0
- package/dist/map/messages/commands/remove-image-layer.command.d.ts +8 -0
- package/dist/map/services/map-management.service.d.ts +1 -0
- package/dist/src/map/map-plate/layers/image-layer/image-layer-factory.d.ts +9 -0
- package/dist/src/map/map-plate/layers/image-layer/image-layer.component.d.ts +22 -0
- package/dist/src/map/map-plate/layers/image-layer/image-layer.settings.d.ts +97 -0
- package/dist/src/map/map-plate/layers/index.d.ts +2 -0
- package/dist/src/map/map.module.d.ts +3 -2
- package/dist/src/map/messages/commands/add-image-layer.command.d.ts +8 -0
- package/dist/src/map/messages/commands/remove-image-layer.command.d.ts +8 -0
- package/dist/src/map/services/map-management.service.d.ts +1 -0
- package/package.json +1 -1
|
@@ -22,6 +22,8 @@ import OSM from 'ol/source/OSM';
|
|
|
22
22
|
import { Vector as Vector$1 } from 'ol/layer';
|
|
23
23
|
import { bbox } from 'ol/loadingstrategy';
|
|
24
24
|
import Cluster from 'ol/source/Cluster';
|
|
25
|
+
import Static from 'ol/source/ImageStatic';
|
|
26
|
+
import ImageLayer from 'ol/layer/Image';
|
|
25
27
|
import Map from 'ol/Map';
|
|
26
28
|
import View from 'ol/View';
|
|
27
29
|
import Overlay from 'ol/Overlay';
|
|
@@ -866,6 +868,22 @@ class ZoomControlFactory {
|
|
|
866
868
|
}
|
|
867
869
|
}
|
|
868
870
|
|
|
871
|
+
class AddImageLayerCommand extends PostboyGenericMessage {
|
|
872
|
+
constructor(layer) {
|
|
873
|
+
super();
|
|
874
|
+
this.layer = layer;
|
|
875
|
+
}
|
|
876
|
+
}
|
|
877
|
+
AddImageLayerCommand.ID = '70f9b86f-8bc2-4f28-ae79-a13fc0b1ee5d';
|
|
878
|
+
|
|
879
|
+
class RemoveImageLayerCommand extends PostboyGenericMessage {
|
|
880
|
+
constructor(layer) {
|
|
881
|
+
super();
|
|
882
|
+
this.layer = layer;
|
|
883
|
+
}
|
|
884
|
+
}
|
|
885
|
+
RemoveImageLayerCommand.ID = 'c8e7efdb-17ff-4cf9-89be-e688b8de3b95';
|
|
886
|
+
|
|
869
887
|
class MapPostboyService extends PostboyService {
|
|
870
888
|
constructor() {
|
|
871
889
|
super();
|
|
@@ -897,6 +915,7 @@ class MapManagementService {
|
|
|
897
915
|
this.observeLayerQuery();
|
|
898
916
|
this.observeFeaturesInArea();
|
|
899
917
|
this.observeFeaturesInPoint();
|
|
918
|
+
this.observeImageLayer();
|
|
900
919
|
}
|
|
901
920
|
observeRemoveTile() {
|
|
902
921
|
this.postboy.sub(RemoveTileCommand).subscribe((c) => {
|
|
@@ -915,6 +934,18 @@ class MapManagementService {
|
|
|
915
934
|
this.map.addLayer(c.layer);
|
|
916
935
|
});
|
|
917
936
|
}
|
|
937
|
+
observeImageLayer() {
|
|
938
|
+
this.postboy.sub(AddImageLayerCommand).subscribe((c) => {
|
|
939
|
+
if (!this.map)
|
|
940
|
+
return;
|
|
941
|
+
this.map.addLayer(c.layer);
|
|
942
|
+
});
|
|
943
|
+
this.postboy.sub(RemoveImageLayerCommand).subscribe((c) => {
|
|
944
|
+
if (!this.map)
|
|
945
|
+
return;
|
|
946
|
+
this.map.removeLayer(c.layer);
|
|
947
|
+
});
|
|
948
|
+
}
|
|
918
949
|
observeMapRender() {
|
|
919
950
|
this.postboy.sub(MapRenderedEvent).subscribe((m) => {
|
|
920
951
|
this.map = m.map;
|
|
@@ -1345,6 +1376,8 @@ class MessageRegistratorService extends PostboyAbstractRegistrator {
|
|
|
1345
1376
|
this.recordSubject(AddLayerCommand);
|
|
1346
1377
|
this.recordSubject(RemoveLayerCommand);
|
|
1347
1378
|
this.recordSubject(AddTileCommand);
|
|
1379
|
+
this.recordSubject(RemoveImageLayerCommand);
|
|
1380
|
+
this.recordSubject(AddImageLayerCommand);
|
|
1348
1381
|
this.recordSubject(RemoveTileCommand);
|
|
1349
1382
|
this.recordSubject(MapClickEvent);
|
|
1350
1383
|
this.recordSubject(CloseTooltipCommand);
|
|
@@ -2131,6 +2164,202 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2131
2164
|
type: Input
|
|
2132
2165
|
}] } });
|
|
2133
2166
|
|
|
2167
|
+
class ImageLayerSettings {
|
|
2168
|
+
constructor() {
|
|
2169
|
+
/**
|
|
2170
|
+
* Represents the tiles URL.
|
|
2171
|
+
* @typedef {string} url
|
|
2172
|
+
*
|
|
2173
|
+
* @example
|
|
2174
|
+
* 'https://example.ex/{z}/{x}/{y}.png'
|
|
2175
|
+
*/
|
|
2176
|
+
this.url = '';
|
|
2177
|
+
/**
|
|
2178
|
+
* Use interpolated values when resampling.
|
|
2179
|
+
* By default, linear interpolation is used when resampling.
|
|
2180
|
+
* Set to false to use the nearest neighbor instead.
|
|
2181
|
+
*/
|
|
2182
|
+
this.interpolate = undefined;
|
|
2183
|
+
/**
|
|
2184
|
+
* The projection of the coordinate system.
|
|
2185
|
+
*
|
|
2186
|
+
* @type {string}
|
|
2187
|
+
* @default 'EPSG:3857'
|
|
2188
|
+
*/
|
|
2189
|
+
this.projection = 'EPSG:3857';
|
|
2190
|
+
this.extent = [0, 0, 0, 0];
|
|
2191
|
+
/**
|
|
2192
|
+
* Additional headers that should be added to each tile request
|
|
2193
|
+
*
|
|
2194
|
+
* @type {Record<string, string>}
|
|
2195
|
+
* @default An empty array
|
|
2196
|
+
*/
|
|
2197
|
+
this.requestHeaders = null;
|
|
2198
|
+
}
|
|
2199
|
+
/**
|
|
2200
|
+
* Creates a copy of the given tile layer settings.
|
|
2201
|
+
*
|
|
2202
|
+
* @param {ImageLayerSettings} model - The tile layer settings to be copied.
|
|
2203
|
+
* @return {ImageLayerSettings} - A new instance of ImageLayerSettings with the same properties as the model.
|
|
2204
|
+
*/
|
|
2205
|
+
static copy(model) {
|
|
2206
|
+
const result = new ImageLayerSettings();
|
|
2207
|
+
result.interpolate = model.interpolate;
|
|
2208
|
+
result.projection = model.projection;
|
|
2209
|
+
result.extent = model.extent;
|
|
2210
|
+
result.url = model.url;
|
|
2211
|
+
result.requestHeaders = model.requestHeaders;
|
|
2212
|
+
return result;
|
|
2213
|
+
}
|
|
2214
|
+
/**
|
|
2215
|
+
* Sets the URL of the ImageLayerSettings object.
|
|
2216
|
+
*
|
|
2217
|
+
* @param {string} url - The URL to be set.
|
|
2218
|
+
* @return {ImageLayerSettings} - The updated ImageLayerSettings object.
|
|
2219
|
+
*/
|
|
2220
|
+
setUrl(url) {
|
|
2221
|
+
return ImageLayerSettings.copy({ ...this, url });
|
|
2222
|
+
}
|
|
2223
|
+
/**
|
|
2224
|
+
* Sets the interpolation state for the image layer settings.
|
|
2225
|
+
*
|
|
2226
|
+
* @param {boolean} [interpolate] - Use interpolated values when resampling.
|
|
2227
|
+
* By default, linear interpolation is used when resampling.
|
|
2228
|
+
* Set to false to use the nearest neighbor instead.
|
|
2229
|
+
* @return {ImageLayerSettings} A new instance of ImageLayerSettings with the updated interpolation setting.
|
|
2230
|
+
*/
|
|
2231
|
+
setInterpolate(interpolate) {
|
|
2232
|
+
return ImageLayerSettings.copy({ ...this, interpolate });
|
|
2233
|
+
}
|
|
2234
|
+
setExtent(extent) {
|
|
2235
|
+
return ImageLayerSettings.copy({ ...this, extent });
|
|
2236
|
+
}
|
|
2237
|
+
/**
|
|
2238
|
+
* Sets the requestHeaders of the ImageLayerSettings object.
|
|
2239
|
+
*
|
|
2240
|
+
* @param {Record<string, string>} requestHeaders - The headers which should be provided.
|
|
2241
|
+
* @return {ImageLayerSettings} - The updated ImageLayerSettings object.
|
|
2242
|
+
*/
|
|
2243
|
+
setRequestHeaders(requestHeaders) {
|
|
2244
|
+
return ImageLayerSettings.copy({ ...this, requestHeaders });
|
|
2245
|
+
}
|
|
2246
|
+
/**
|
|
2247
|
+
* Sets the maximum zoom level for the tile layer.
|
|
2248
|
+
*
|
|
2249
|
+
* @param {number} maxZoom - The maximum zoom level.
|
|
2250
|
+
* @returns {ImageLayerSettings} - The updated tile layer settings object.
|
|
2251
|
+
*/
|
|
2252
|
+
setMaxZoom(maxZoom) {
|
|
2253
|
+
return ImageLayerSettings.copy({ ...this, maxZoom });
|
|
2254
|
+
}
|
|
2255
|
+
/**
|
|
2256
|
+
* Sets the minimum zoom level for the Tile Layer.
|
|
2257
|
+
*
|
|
2258
|
+
* @param {number} minZoom - The minimum zoom level to be set.
|
|
2259
|
+
* @return {ImageLayerSettings} The modified ImageLayerSettings object with the updated minimum zoom level.
|
|
2260
|
+
*/
|
|
2261
|
+
setMinZoom(minZoom) {
|
|
2262
|
+
return ImageLayerSettings.copy({ ...this, minZoom });
|
|
2263
|
+
}
|
|
2264
|
+
/**
|
|
2265
|
+
* Sets the opacity of the ImageLayerSettings.
|
|
2266
|
+
*
|
|
2267
|
+
* @param {number} opacity - The opacity value to set. Must be a number between 0 and 1.
|
|
2268
|
+
* @return {ImageLayerSettings} - A new instance of ImageLayerSettings with the opacity set.
|
|
2269
|
+
*/
|
|
2270
|
+
setOpacity(opacity) {
|
|
2271
|
+
return ImageLayerSettings.copy({ ...this, opacity });
|
|
2272
|
+
}
|
|
2273
|
+
/**
|
|
2274
|
+
* Sets the projection for the tile layer settings.
|
|
2275
|
+
*
|
|
2276
|
+
* @param {string} projection - The desired projection for the tile layer settings.
|
|
2277
|
+
* @return {ImageLayerSettings} - The updated tile layer settings with the new projection.
|
|
2278
|
+
*/
|
|
2279
|
+
setProjection(projection) {
|
|
2280
|
+
return ImageLayerSettings.copy({ ...this, projection });
|
|
2281
|
+
}
|
|
2282
|
+
/**
|
|
2283
|
+
* Checks if the current instance of ImageLayerSettings is equal to the given model.
|
|
2284
|
+
* @param {ImageLayerSettings} model - The model to compare against.
|
|
2285
|
+
* @return {boolean} - True if all properties of the current instance matches the properties of the model;
|
|
2286
|
+
* otherwise, false.
|
|
2287
|
+
*/
|
|
2288
|
+
isSame(model) {
|
|
2289
|
+
if (this.url !== model.url)
|
|
2290
|
+
return false;
|
|
2291
|
+
if (this.projection !== model.projection)
|
|
2292
|
+
return false;
|
|
2293
|
+
if (this.extent !== model.extent)
|
|
2294
|
+
return false;
|
|
2295
|
+
if (this.interpolate !== model.interpolate)
|
|
2296
|
+
return false;
|
|
2297
|
+
if (this.requestHeaders !== model.requestHeaders)
|
|
2298
|
+
return false;
|
|
2299
|
+
return true;
|
|
2300
|
+
}
|
|
2301
|
+
}
|
|
2302
|
+
|
|
2303
|
+
class ImageLayerFactory {
|
|
2304
|
+
build(settings) {
|
|
2305
|
+
const source = new Static({
|
|
2306
|
+
url: settings.url,
|
|
2307
|
+
interpolate: settings.interpolate,
|
|
2308
|
+
crossOrigin: 'Anonymous',
|
|
2309
|
+
projection: get(settings.projection),
|
|
2310
|
+
imageExtent: settings.extent,
|
|
2311
|
+
});
|
|
2312
|
+
return new ImageLayer({ source });
|
|
2313
|
+
}
|
|
2314
|
+
}
|
|
2315
|
+
ImageLayerFactory.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ImageLayerFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2316
|
+
ImageLayerFactory.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ImageLayerFactory, providedIn: 'root' });
|
|
2317
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ImageLayerFactory, decorators: [{
|
|
2318
|
+
type: Injectable,
|
|
2319
|
+
args: [{
|
|
2320
|
+
providedIn: 'root',
|
|
2321
|
+
}]
|
|
2322
|
+
}] });
|
|
2323
|
+
|
|
2324
|
+
class ImageLayerComponent extends DestructibleComponent {
|
|
2325
|
+
constructor(postboy, factory) {
|
|
2326
|
+
super();
|
|
2327
|
+
this.postboy = postboy;
|
|
2328
|
+
this.factory = factory;
|
|
2329
|
+
this._settings = new ImageLayerSettings();
|
|
2330
|
+
this.onDestroy = () => this.removeLayer();
|
|
2331
|
+
}
|
|
2332
|
+
set settings(value) {
|
|
2333
|
+
if (!value || this._settings.isSame(value))
|
|
2334
|
+
return;
|
|
2335
|
+
this._settings = value;
|
|
2336
|
+
this.initLayer();
|
|
2337
|
+
}
|
|
2338
|
+
ngOnInit() {
|
|
2339
|
+
this.postboy
|
|
2340
|
+
.sub(MapRenderedEvent)
|
|
2341
|
+
.pipe(filter((m) => !!m), first())
|
|
2342
|
+
.subscribe((m) => this.initLayer());
|
|
2343
|
+
}
|
|
2344
|
+
initLayer() {
|
|
2345
|
+
this.removeLayer();
|
|
2346
|
+
this.layer = this.factory.build(this._settings);
|
|
2347
|
+
this.postboy.fire(new AddImageLayerCommand(this.layer));
|
|
2348
|
+
}
|
|
2349
|
+
removeLayer() {
|
|
2350
|
+
if (this.layer)
|
|
2351
|
+
this.postboy.fire(new RemoveImageLayerCommand(this.layer));
|
|
2352
|
+
}
|
|
2353
|
+
}
|
|
2354
|
+
ImageLayerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ImageLayerComponent, deps: [{ token: MapPostboyService }, { token: ImageLayerFactory }], target: i0.ɵɵFactoryTarget.Component });
|
|
2355
|
+
ImageLayerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ImageLayerComponent, selector: "art-image-layer", inputs: { settings: "settings" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2356
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ImageLayerComponent, decorators: [{
|
|
2357
|
+
type: Component,
|
|
2358
|
+
args: [{ selector: 'art-image-layer', template: '', changeDetection: ChangeDetectionStrategy.OnPush }]
|
|
2359
|
+
}], ctorParameters: function () { return [{ type: MapPostboyService }, { type: ImageLayerFactory }]; }, propDecorators: { settings: [{
|
|
2360
|
+
type: Input
|
|
2361
|
+
}] } });
|
|
2362
|
+
|
|
2134
2363
|
class MapPlateFactory {
|
|
2135
2364
|
build(settings) {
|
|
2136
2365
|
return new Map({
|
|
@@ -2605,14 +2834,16 @@ MapModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.
|
|
|
2605
2834
|
TooltipComponent,
|
|
2606
2835
|
PolygonsComponent,
|
|
2607
2836
|
ClusterLayerComponent,
|
|
2608
|
-
MapControlZoomComponent
|
|
2837
|
+
MapControlZoomComponent,
|
|
2838
|
+
ImageLayerComponent], imports: [CommonModule], exports: [MapPlateComponent,
|
|
2609
2839
|
FeatureLayerComponent,
|
|
2610
2840
|
MarkersComponent,
|
|
2611
2841
|
TileLayerComponent,
|
|
2612
2842
|
TooltipComponent,
|
|
2613
2843
|
PolygonsComponent,
|
|
2614
2844
|
ClusterLayerComponent,
|
|
2615
|
-
MapControlZoomComponent
|
|
2845
|
+
MapControlZoomComponent,
|
|
2846
|
+
ImageLayerComponent] });
|
|
2616
2847
|
MapModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MapModule, imports: [CommonModule] });
|
|
2617
2848
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MapModule, decorators: [{
|
|
2618
2849
|
type: NgModule,
|
|
@@ -2629,6 +2860,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2629
2860
|
PolygonsComponent,
|
|
2630
2861
|
ClusterLayerComponent,
|
|
2631
2862
|
MapControlZoomComponent,
|
|
2863
|
+
ImageLayerComponent,
|
|
2632
2864
|
],
|
|
2633
2865
|
exports: [
|
|
2634
2866
|
MapPlateComponent,
|
|
@@ -2639,6 +2871,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2639
2871
|
PolygonsComponent,
|
|
2640
2872
|
ClusterLayerComponent,
|
|
2641
2873
|
MapControlZoomComponent,
|
|
2874
|
+
ImageLayerComponent,
|
|
2642
2875
|
],
|
|
2643
2876
|
}]
|
|
2644
2877
|
}] });
|
|
@@ -2839,5 +3072,5 @@ class StringifyFeatureHelper {
|
|
|
2839
3072
|
* Generated bundle index. Do not edit.
|
|
2840
3073
|
*/
|
|
2841
3074
|
|
|
2842
|
-
export { AddControlCommand, CalculateAreaExecutor, CancelDrawingCommand, CancelFeatureModificationCommand, CloseTooltipCommand, ClusterLayerComponent, ClusterLayerSettings, DrawSelectionAreaCommand, DrawingType, FeatureLayerComponent, FeatureLayerSettings, FeatureOutputFormat, FilterFeaturesInAreaExecutor, FilterFeaturesInPointExecutor, FitToFeaturesCommand, FitToPolygonsCommand, GetFeaturesInAreaQuery, GetFeaturesInPointQuery, GetMapPositionExecutor, MapClickEvent, MapConstants, MapControl, MapControlZoomComponent, MapFeatureHoveredEvent, MapLyrs, MapLyrsLabel, MapModule, MapMoveEndEvent, MapPlateComponent, MapPointerMoveEvent, MapPostboyService, MapRenderedEvent, MapSettings, MarkerModel, MarkerStyleHelper, MarkersComponent, MessageRegistratorService, ModifyFeatureCommand, OsmTileLayerComponent, PolygonModel, PolygonSelfIntersectionExecutor, PolygonStyleHelper, PolygonsComponent, RemoveControlCommand, SetMapCenterCommand, StartDrawingCommand, StringifyFeatureHelper, TextStyleHelper, TileLayerComponent, TileLayerSettings, TooltipComponent, TooltipSettings, ZoomControlSettings };
|
|
3075
|
+
export { AddControlCommand, CalculateAreaExecutor, CancelDrawingCommand, CancelFeatureModificationCommand, CloseTooltipCommand, ClusterLayerComponent, ClusterLayerSettings, DrawSelectionAreaCommand, DrawingType, FeatureLayerComponent, FeatureLayerSettings, FeatureOutputFormat, FilterFeaturesInAreaExecutor, FilterFeaturesInPointExecutor, FitToFeaturesCommand, FitToPolygonsCommand, GetFeaturesInAreaQuery, GetFeaturesInPointQuery, GetMapPositionExecutor, ImageLayerComponent, ImageLayerSettings, MapClickEvent, MapConstants, MapControl, MapControlZoomComponent, MapFeatureHoveredEvent, MapLyrs, MapLyrsLabel, MapModule, MapMoveEndEvent, MapPlateComponent, MapPointerMoveEvent, MapPostboyService, MapRenderedEvent, MapSettings, MarkerModel, MarkerStyleHelper, MarkersComponent, MessageRegistratorService, ModifyFeatureCommand, OsmTileLayerComponent, PolygonModel, PolygonSelfIntersectionExecutor, PolygonStyleHelper, PolygonsComponent, RemoveControlCommand, SetMapCenterCommand, StartDrawingCommand, StringifyFeatureHelper, TextStyleHelper, TileLayerComponent, TileLayerSettings, TooltipComponent, TooltipSettings, ZoomControlSettings };
|
|
2843
3076
|
//# sourceMappingURL=maps-components.mjs.map
|