@artstesh/maps 4.1.10 → 4.1.11
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/messages/index.mjs +2 -1
- package/dist/esm2020/src/map/messages/index.mjs +2 -1
- package/dist/fesm2015/maps-components-src-map.mjs +13 -13
- package/dist/fesm2015/maps-components-src-map.mjs.map +1 -1
- package/dist/fesm2015/maps-components.mjs +13 -13
- package/dist/fesm2015/maps-components.mjs.map +1 -1
- package/dist/fesm2020/maps-components-src-map.mjs +13 -13
- package/dist/fesm2020/maps-components-src-map.mjs.map +1 -1
- package/dist/fesm2020/maps-components.mjs +13 -13
- package/dist/fesm2020/maps-components.mjs.map +1 -1
- package/dist/map/messages/index.d.ts +1 -0
- package/dist/src/map/messages/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -389,6 +389,18 @@ class GetMapPositionExecutor extends PostboyExecutor {
|
|
|
389
389
|
}
|
|
390
390
|
GetMapPositionExecutor.ID = '52c95689-d09b-4082-ba58-9183ea96a213';
|
|
391
391
|
|
|
392
|
+
class GetFeaturesInAreaQuery extends PostboyCallbackMessage {
|
|
393
|
+
constructor(area, ignore = new Set()) {
|
|
394
|
+
super();
|
|
395
|
+
this.area = area;
|
|
396
|
+
this.ignore = ignore;
|
|
397
|
+
}
|
|
398
|
+
get id() {
|
|
399
|
+
return GetFeaturesInAreaQuery.ID;
|
|
400
|
+
}
|
|
401
|
+
}
|
|
402
|
+
GetFeaturesInAreaQuery.ID = 'efcf4271-a07a-40e0-9f02-d4dade40b8ac';
|
|
403
|
+
|
|
392
404
|
class AddLayerCommand extends PostboyGenericMessage {
|
|
393
405
|
constructor(layer) {
|
|
394
406
|
super();
|
|
@@ -521,18 +533,6 @@ class FeatureService {
|
|
|
521
533
|
}
|
|
522
534
|
}
|
|
523
535
|
|
|
524
|
-
class GetFeaturesInAreaQuery extends PostboyCallbackMessage {
|
|
525
|
-
constructor(area, ignore = new Set()) {
|
|
526
|
-
super();
|
|
527
|
-
this.area = area;
|
|
528
|
-
this.ignore = ignore;
|
|
529
|
-
}
|
|
530
|
-
get id() {
|
|
531
|
-
return GetFeaturesInAreaQuery.ID;
|
|
532
|
-
}
|
|
533
|
-
}
|
|
534
|
-
GetFeaturesInAreaQuery.ID = 'efcf4271-a07a-40e0-9f02-d4dade40b8ac';
|
|
535
|
-
|
|
536
536
|
class FilterFeaturesInAreaExecutor extends PostboyExecutor {
|
|
537
537
|
constructor(area, features) {
|
|
538
538
|
super();
|
|
@@ -2457,5 +2457,5 @@ class StringifyFeatureHelper {
|
|
|
2457
2457
|
* Generated bundle index. Do not edit.
|
|
2458
2458
|
*/
|
|
2459
2459
|
|
|
2460
|
-
export { AddControlCommand, CalculateAreaExecutor, CancelDrawingCommand, CancelFeatureModificationCommand, CloseTooltipCommand, ClusterLayerComponent, ClusterLayerSettings, DrawSelectionAreaCommand, DrawingType, FeatureLayerComponent, FeatureLayerSettings, FeatureOutputFormat, FitToPolygonsCommand, GetMapPositionExecutor, MapClickEvent, MapControl, MapControlZoomComponent, MapLyrs, MapLyrsLabel, MapModule, MapMoveEndEvent, MapPlateComponent, MapPostboyService, MapRenderedEvent, MapSettings, MarkerModel, MarkerStyleHelper, MarkersComponent, MessageRegistratorService, ModifyFeatureCommand, OsmTileLayerComponent, PolygonModel, PolygonStyleHelper, PolygonsComponent, RemoveControlCommand, SetMapCenterCommand, StartDrawingCommand, StringifyFeatureHelper, TextStyleHelper, TileLayerComponent, TileLayerSettings, TooltipComponent, TooltipSettings, ZoomControlSettings };
|
|
2460
|
+
export { AddControlCommand, CalculateAreaExecutor, CancelDrawingCommand, CancelFeatureModificationCommand, CloseTooltipCommand, ClusterLayerComponent, ClusterLayerSettings, DrawSelectionAreaCommand, DrawingType, FeatureLayerComponent, FeatureLayerSettings, FeatureOutputFormat, FitToPolygonsCommand, GetFeaturesInAreaQuery, GetMapPositionExecutor, MapClickEvent, MapControl, MapControlZoomComponent, MapLyrs, MapLyrsLabel, MapModule, MapMoveEndEvent, MapPlateComponent, MapPostboyService, MapRenderedEvent, MapSettings, MarkerModel, MarkerStyleHelper, MarkersComponent, MessageRegistratorService, ModifyFeatureCommand, OsmTileLayerComponent, PolygonModel, PolygonStyleHelper, PolygonsComponent, RemoveControlCommand, SetMapCenterCommand, StartDrawingCommand, StringifyFeatureHelper, TextStyleHelper, TileLayerComponent, TileLayerSettings, TooltipComponent, TooltipSettings, ZoomControlSettings };
|
|
2461
2461
|
//# sourceMappingURL=maps-components-src-map.mjs.map
|