@artstesh/maps 6.1.5 → 6.1.6
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/esm2022/map/map-plate/layers/image-layer/image-layer-factory.mjs +26 -0
- package/dist/esm2022/map/map-plate/layers/image-layer/image-layer.component.mjs +52 -0
- package/dist/esm2022/map/map-plate/layers/image-layer/image-layer.settings.mjs +134 -0
- package/dist/esm2022/map/map-plate/layers/index.mjs +3 -1
- package/dist/esm2022/map/map.module.mjs +8 -3
- package/dist/esm2022/map/messages/commands/add-image-layer.command.mjs +10 -0
- package/dist/esm2022/map/messages/commands/remove-image-layer.command.mjs +10 -0
- package/dist/esm2022/map/services/map-management.service.mjs +16 -1
- package/dist/esm2022/map/services/message-registrator.service.mjs +5 -1
- package/dist/esm2022/src/map/map-plate/layers/image-layer/image-layer-factory.mjs +26 -0
- package/dist/esm2022/src/map/map-plate/layers/image-layer/image-layer.component.mjs +52 -0
- package/dist/esm2022/src/map/map-plate/layers/image-layer/image-layer.settings.mjs +134 -0
- package/dist/esm2022/src/map/map-plate/layers/index.mjs +3 -1
- package/dist/esm2022/src/map/map.module.mjs +8 -3
- package/dist/esm2022/src/map/messages/commands/add-image-layer.command.mjs +10 -0
- package/dist/esm2022/src/map/messages/commands/remove-image-layer.command.mjs +10 -0
- package/dist/esm2022/src/map/services/map-management.service.mjs +16 -1
- package/dist/esm2022/src/map/services/message-registrator.service.mjs +5 -1
- package/dist/fesm2022/maps-components-src-map.mjs +239 -3
- package/dist/fesm2022/maps-components-src-map.mjs.map +1 -1
- package/dist/fesm2022/maps-components.mjs +239 -3
- package/dist/fesm2022/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';
|
|
@@ -924,6 +926,24 @@ class ZoomControlFactory {
|
|
|
924
926
|
}
|
|
925
927
|
}
|
|
926
928
|
|
|
929
|
+
class AddImageLayerCommand extends PostboyGenericMessage {
|
|
930
|
+
layer;
|
|
931
|
+
static ID = '70f9b86f-8bc2-4f28-ae79-a13fc0b1ee5d';
|
|
932
|
+
constructor(layer) {
|
|
933
|
+
super();
|
|
934
|
+
this.layer = layer;
|
|
935
|
+
}
|
|
936
|
+
}
|
|
937
|
+
|
|
938
|
+
class RemoveImageLayerCommand extends PostboyGenericMessage {
|
|
939
|
+
layer;
|
|
940
|
+
static ID = 'c8e7efdb-17ff-4cf9-89be-e688b8de3b95';
|
|
941
|
+
constructor(layer) {
|
|
942
|
+
super();
|
|
943
|
+
this.layer = layer;
|
|
944
|
+
}
|
|
945
|
+
}
|
|
946
|
+
|
|
927
947
|
class MapPostboyService extends PostboyService {
|
|
928
948
|
constructor() {
|
|
929
949
|
super();
|
|
@@ -952,6 +972,7 @@ class MapManagementService {
|
|
|
952
972
|
this.observeLayerQuery();
|
|
953
973
|
this.observeFeaturesInArea();
|
|
954
974
|
this.observeFeaturesInPoint();
|
|
975
|
+
this.observeImageLayer();
|
|
955
976
|
}
|
|
956
977
|
observeRemoveTile() {
|
|
957
978
|
this.postboy.sub(RemoveTileCommand).subscribe((c) => {
|
|
@@ -970,6 +991,18 @@ class MapManagementService {
|
|
|
970
991
|
this.map.addLayer(c.layer);
|
|
971
992
|
});
|
|
972
993
|
}
|
|
994
|
+
observeImageLayer() {
|
|
995
|
+
this.postboy.sub(AddImageLayerCommand).subscribe((c) => {
|
|
996
|
+
if (!this.map)
|
|
997
|
+
return;
|
|
998
|
+
this.map.addLayer(c.layer);
|
|
999
|
+
});
|
|
1000
|
+
this.postboy.sub(RemoveImageLayerCommand).subscribe((c) => {
|
|
1001
|
+
if (!this.map)
|
|
1002
|
+
return;
|
|
1003
|
+
this.map.removeLayer(c.layer);
|
|
1004
|
+
});
|
|
1005
|
+
}
|
|
973
1006
|
observeMapRender() {
|
|
974
1007
|
this.postboy.sub(MapRenderedEvent).subscribe((m) => {
|
|
975
1008
|
this.map = m.map;
|
|
@@ -1419,6 +1452,8 @@ class MessageRegistratorService extends PostboyAbstractRegistrator {
|
|
|
1419
1452
|
this.recordSubject(AddLayerCommand);
|
|
1420
1453
|
this.recordSubject(RemoveLayerCommand);
|
|
1421
1454
|
this.recordSubject(AddTileCommand);
|
|
1455
|
+
this.recordSubject(RemoveImageLayerCommand);
|
|
1456
|
+
this.recordSubject(AddImageLayerCommand);
|
|
1422
1457
|
this.recordSubject(RemoveTileCommand);
|
|
1423
1458
|
this.recordSubject(MapClickEvent);
|
|
1424
1459
|
this.recordSubject(CloseTooltipCommand);
|
|
@@ -2231,6 +2266,203 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.7", ngImpor
|
|
|
2231
2266
|
type: Input
|
|
2232
2267
|
}] } });
|
|
2233
2268
|
|
|
2269
|
+
class ImageLayerSettings {
|
|
2270
|
+
/**
|
|
2271
|
+
* Represents the tiles URL.
|
|
2272
|
+
* @typedef {string} url
|
|
2273
|
+
*
|
|
2274
|
+
* @example
|
|
2275
|
+
* 'https://example.ex/{z}/{x}/{y}.png'
|
|
2276
|
+
*/
|
|
2277
|
+
url = '';
|
|
2278
|
+
/**
|
|
2279
|
+
* Use interpolated values when resampling.
|
|
2280
|
+
* By default, linear interpolation is used when resampling.
|
|
2281
|
+
* Set to false to use the nearest neighbor instead.
|
|
2282
|
+
*/
|
|
2283
|
+
interpolate = undefined;
|
|
2284
|
+
/**
|
|
2285
|
+
* The projection of the coordinate system.
|
|
2286
|
+
*
|
|
2287
|
+
* @type {string}
|
|
2288
|
+
* @default 'EPSG:3857'
|
|
2289
|
+
*/
|
|
2290
|
+
projection = 'EPSG:3857';
|
|
2291
|
+
extent = [0, 0, 0, 0];
|
|
2292
|
+
/**
|
|
2293
|
+
* Additional headers that should be added to each tile request
|
|
2294
|
+
*
|
|
2295
|
+
* @type {Record<string, string>}
|
|
2296
|
+
* @default An empty array
|
|
2297
|
+
*/
|
|
2298
|
+
requestHeaders = null;
|
|
2299
|
+
/**
|
|
2300
|
+
* Creates a copy of the given tile layer settings.
|
|
2301
|
+
*
|
|
2302
|
+
* @param {ImageLayerSettings} model - The tile layer settings to be copied.
|
|
2303
|
+
* @return {ImageLayerSettings} - A new instance of ImageLayerSettings with the same properties as the model.
|
|
2304
|
+
*/
|
|
2305
|
+
static copy(model) {
|
|
2306
|
+
const result = new ImageLayerSettings();
|
|
2307
|
+
result.interpolate = model.interpolate;
|
|
2308
|
+
result.projection = model.projection;
|
|
2309
|
+
result.extent = model.extent;
|
|
2310
|
+
result.url = model.url;
|
|
2311
|
+
result.requestHeaders = model.requestHeaders;
|
|
2312
|
+
return result;
|
|
2313
|
+
}
|
|
2314
|
+
/**
|
|
2315
|
+
* Sets the URL of the ImageLayerSettings object.
|
|
2316
|
+
*
|
|
2317
|
+
* @param {string} url - The URL to be set.
|
|
2318
|
+
* @return {ImageLayerSettings} - The updated ImageLayerSettings object.
|
|
2319
|
+
*/
|
|
2320
|
+
setUrl(url) {
|
|
2321
|
+
return ImageLayerSettings.copy({ ...this, url });
|
|
2322
|
+
}
|
|
2323
|
+
/**
|
|
2324
|
+
* Sets the interpolation state for the image layer settings.
|
|
2325
|
+
*
|
|
2326
|
+
* @param {boolean} [interpolate] - Use interpolated values when resampling.
|
|
2327
|
+
* By default, linear interpolation is used when resampling.
|
|
2328
|
+
* Set to false to use the nearest neighbor instead.
|
|
2329
|
+
* @return {ImageLayerSettings} A new instance of ImageLayerSettings with the updated interpolation setting.
|
|
2330
|
+
*/
|
|
2331
|
+
setInterpolate(interpolate) {
|
|
2332
|
+
return ImageLayerSettings.copy({ ...this, interpolate });
|
|
2333
|
+
}
|
|
2334
|
+
setExtent(extent) {
|
|
2335
|
+
return ImageLayerSettings.copy({ ...this, extent });
|
|
2336
|
+
}
|
|
2337
|
+
/**
|
|
2338
|
+
* Sets the requestHeaders of the ImageLayerSettings object.
|
|
2339
|
+
*
|
|
2340
|
+
* @param {Record<string, string>} requestHeaders - The headers which should be provided.
|
|
2341
|
+
* @return {ImageLayerSettings} - The updated ImageLayerSettings object.
|
|
2342
|
+
*/
|
|
2343
|
+
setRequestHeaders(requestHeaders) {
|
|
2344
|
+
return ImageLayerSettings.copy({ ...this, requestHeaders });
|
|
2345
|
+
}
|
|
2346
|
+
/**
|
|
2347
|
+
* Sets the maximum zoom level for the tile layer.
|
|
2348
|
+
*
|
|
2349
|
+
* @param {number} maxZoom - The maximum zoom level.
|
|
2350
|
+
* @returns {ImageLayerSettings} - The updated tile layer settings object.
|
|
2351
|
+
*/
|
|
2352
|
+
setMaxZoom(maxZoom) {
|
|
2353
|
+
return ImageLayerSettings.copy({ ...this, maxZoom });
|
|
2354
|
+
}
|
|
2355
|
+
/**
|
|
2356
|
+
* Sets the minimum zoom level for the Tile Layer.
|
|
2357
|
+
*
|
|
2358
|
+
* @param {number} minZoom - The minimum zoom level to be set.
|
|
2359
|
+
* @return {ImageLayerSettings} The modified ImageLayerSettings object with the updated minimum zoom level.
|
|
2360
|
+
*/
|
|
2361
|
+
setMinZoom(minZoom) {
|
|
2362
|
+
return ImageLayerSettings.copy({ ...this, minZoom });
|
|
2363
|
+
}
|
|
2364
|
+
/**
|
|
2365
|
+
* Sets the opacity of the ImageLayerSettings.
|
|
2366
|
+
*
|
|
2367
|
+
* @param {number} opacity - The opacity value to set. Must be a number between 0 and 1.
|
|
2368
|
+
* @return {ImageLayerSettings} - A new instance of ImageLayerSettings with the opacity set.
|
|
2369
|
+
*/
|
|
2370
|
+
setOpacity(opacity) {
|
|
2371
|
+
return ImageLayerSettings.copy({ ...this, opacity });
|
|
2372
|
+
}
|
|
2373
|
+
/**
|
|
2374
|
+
* Sets the projection for the tile layer settings.
|
|
2375
|
+
*
|
|
2376
|
+
* @param {string} projection - The desired projection for the tile layer settings.
|
|
2377
|
+
* @return {ImageLayerSettings} - The updated tile layer settings with the new projection.
|
|
2378
|
+
*/
|
|
2379
|
+
setProjection(projection) {
|
|
2380
|
+
return ImageLayerSettings.copy({ ...this, projection });
|
|
2381
|
+
}
|
|
2382
|
+
/**
|
|
2383
|
+
* Checks if the current instance of ImageLayerSettings is equal to the given model.
|
|
2384
|
+
* @param {ImageLayerSettings} model - The model to compare against.
|
|
2385
|
+
* @return {boolean} - True if all properties of the current instance matches the properties of the model;
|
|
2386
|
+
* otherwise, false.
|
|
2387
|
+
*/
|
|
2388
|
+
isSame(model) {
|
|
2389
|
+
if (this.url !== model.url)
|
|
2390
|
+
return false;
|
|
2391
|
+
if (this.projection !== model.projection)
|
|
2392
|
+
return false;
|
|
2393
|
+
if (this.extent !== model.extent)
|
|
2394
|
+
return false;
|
|
2395
|
+
if (this.interpolate !== model.interpolate)
|
|
2396
|
+
return false;
|
|
2397
|
+
if (this.requestHeaders !== model.requestHeaders)
|
|
2398
|
+
return false;
|
|
2399
|
+
return true;
|
|
2400
|
+
}
|
|
2401
|
+
}
|
|
2402
|
+
|
|
2403
|
+
class ImageLayerFactory {
|
|
2404
|
+
build(settings) {
|
|
2405
|
+
const source = new Static({
|
|
2406
|
+
url: settings.url,
|
|
2407
|
+
interpolate: settings.interpolate,
|
|
2408
|
+
crossOrigin: 'Anonymous',
|
|
2409
|
+
projection: get(settings.projection),
|
|
2410
|
+
imageExtent: settings.extent,
|
|
2411
|
+
});
|
|
2412
|
+
return new ImageLayer({ source });
|
|
2413
|
+
}
|
|
2414
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.7", ngImport: i0, type: ImageLayerFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2415
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.7", ngImport: i0, type: ImageLayerFactory, providedIn: 'root' });
|
|
2416
|
+
}
|
|
2417
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.7", ngImport: i0, type: ImageLayerFactory, decorators: [{
|
|
2418
|
+
type: Injectable,
|
|
2419
|
+
args: [{
|
|
2420
|
+
providedIn: 'root',
|
|
2421
|
+
}]
|
|
2422
|
+
}] });
|
|
2423
|
+
|
|
2424
|
+
class ImageLayerComponent extends DestructibleComponent {
|
|
2425
|
+
postboy;
|
|
2426
|
+
factory;
|
|
2427
|
+
layer;
|
|
2428
|
+
constructor(postboy, factory) {
|
|
2429
|
+
super();
|
|
2430
|
+
this.postboy = postboy;
|
|
2431
|
+
this.factory = factory;
|
|
2432
|
+
}
|
|
2433
|
+
_settings = new ImageLayerSettings();
|
|
2434
|
+
set settings(value) {
|
|
2435
|
+
if (!value || this._settings.isSame(value))
|
|
2436
|
+
return;
|
|
2437
|
+
this._settings = value;
|
|
2438
|
+
this.initLayer();
|
|
2439
|
+
}
|
|
2440
|
+
ngOnInit() {
|
|
2441
|
+
this.postboy
|
|
2442
|
+
.sub(MapRenderedEvent)
|
|
2443
|
+
.pipe(filter((m) => !!m), first())
|
|
2444
|
+
.subscribe((m) => this.initLayer());
|
|
2445
|
+
}
|
|
2446
|
+
onDestroy = () => this.removeLayer();
|
|
2447
|
+
initLayer() {
|
|
2448
|
+
this.removeLayer();
|
|
2449
|
+
this.layer = this.factory.build(this._settings);
|
|
2450
|
+
this.postboy.fire(new AddImageLayerCommand(this.layer));
|
|
2451
|
+
}
|
|
2452
|
+
removeLayer() {
|
|
2453
|
+
if (this.layer)
|
|
2454
|
+
this.postboy.fire(new RemoveImageLayerCommand(this.layer));
|
|
2455
|
+
}
|
|
2456
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.7", ngImport: i0, type: ImageLayerComponent, deps: [{ token: MapPostboyService }, { token: ImageLayerFactory }], target: i0.ɵɵFactoryTarget.Component });
|
|
2457
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.7", type: ImageLayerComponent, selector: "art-image-layer", inputs: { settings: "settings" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2458
|
+
}
|
|
2459
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.7", ngImport: i0, type: ImageLayerComponent, decorators: [{
|
|
2460
|
+
type: Component,
|
|
2461
|
+
args: [{ selector: 'art-image-layer', template: '', changeDetection: ChangeDetectionStrategy.OnPush }]
|
|
2462
|
+
}], ctorParameters: () => [{ type: MapPostboyService }, { type: ImageLayerFactory }], propDecorators: { settings: [{
|
|
2463
|
+
type: Input
|
|
2464
|
+
}] } });
|
|
2465
|
+
|
|
2234
2466
|
class MapPlateFactory {
|
|
2235
2467
|
build(settings) {
|
|
2236
2468
|
return new Map({
|
|
@@ -2719,14 +2951,16 @@ class MapModule {
|
|
|
2719
2951
|
TooltipComponent,
|
|
2720
2952
|
PolygonsComponent,
|
|
2721
2953
|
ClusterLayerComponent,
|
|
2722
|
-
MapControlZoomComponent
|
|
2954
|
+
MapControlZoomComponent,
|
|
2955
|
+
ImageLayerComponent], imports: [CommonModule], exports: [MapPlateComponent,
|
|
2723
2956
|
FeatureLayerComponent,
|
|
2724
2957
|
MarkersComponent,
|
|
2725
2958
|
TileLayerComponent,
|
|
2726
2959
|
TooltipComponent,
|
|
2727
2960
|
PolygonsComponent,
|
|
2728
2961
|
ClusterLayerComponent,
|
|
2729
|
-
MapControlZoomComponent
|
|
2962
|
+
MapControlZoomComponent,
|
|
2963
|
+
ImageLayerComponent] });
|
|
2730
2964
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.7", ngImport: i0, type: MapModule, imports: [CommonModule] });
|
|
2731
2965
|
}
|
|
2732
2966
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.7", ngImport: i0, type: MapModule, decorators: [{
|
|
@@ -2744,6 +2978,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.7", ngImpor
|
|
|
2744
2978
|
PolygonsComponent,
|
|
2745
2979
|
ClusterLayerComponent,
|
|
2746
2980
|
MapControlZoomComponent,
|
|
2981
|
+
ImageLayerComponent,
|
|
2747
2982
|
],
|
|
2748
2983
|
exports: [
|
|
2749
2984
|
MapPlateComponent,
|
|
@@ -2754,6 +2989,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.7", ngImpor
|
|
|
2754
2989
|
PolygonsComponent,
|
|
2755
2990
|
ClusterLayerComponent,
|
|
2756
2991
|
MapControlZoomComponent,
|
|
2992
|
+
ImageLayerComponent,
|
|
2757
2993
|
],
|
|
2758
2994
|
}]
|
|
2759
2995
|
}] });
|
|
@@ -2950,5 +3186,5 @@ class StringifyFeatureHelper {
|
|
|
2950
3186
|
* Generated bundle index. Do not edit.
|
|
2951
3187
|
*/
|
|
2952
3188
|
|
|
2953
|
-
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 };
|
|
3189
|
+
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 };
|
|
2954
3190
|
//# sourceMappingURL=maps-components-src-map.mjs.map
|