@artstesh/maps 4.1.12 → 4.1.13
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
|
@@ -401,6 +401,18 @@ class GetFeaturesInAreaQuery extends PostboyCallbackMessage {
|
|
|
401
401
|
}
|
|
402
402
|
GetFeaturesInAreaQuery.ID = 'efcf4271-a07a-40e0-9f02-d4dade40b8ac';
|
|
403
403
|
|
|
404
|
+
class FilterFeaturesInAreaExecutor extends PostboyExecutor {
|
|
405
|
+
constructor(area, features) {
|
|
406
|
+
super();
|
|
407
|
+
this.area = area;
|
|
408
|
+
this.features = features;
|
|
409
|
+
}
|
|
410
|
+
get id() {
|
|
411
|
+
return FilterFeaturesInAreaExecutor.ID;
|
|
412
|
+
}
|
|
413
|
+
}
|
|
414
|
+
FilterFeaturesInAreaExecutor.ID = '36bb2d94-8028-4512-90dd-2386af3fc67c';
|
|
415
|
+
|
|
404
416
|
class AddLayerCommand extends PostboyGenericMessage {
|
|
405
417
|
constructor(layer) {
|
|
406
418
|
super();
|
|
@@ -533,18 +545,6 @@ class FeatureService {
|
|
|
533
545
|
}
|
|
534
546
|
}
|
|
535
547
|
|
|
536
|
-
class FilterFeaturesInAreaExecutor extends PostboyExecutor {
|
|
537
|
-
constructor(area, features) {
|
|
538
|
-
super();
|
|
539
|
-
this.area = area;
|
|
540
|
-
this.features = features;
|
|
541
|
-
}
|
|
542
|
-
get id() {
|
|
543
|
-
return FilterFeaturesInAreaExecutor.ID;
|
|
544
|
-
}
|
|
545
|
-
}
|
|
546
|
-
FilterFeaturesInAreaExecutor.ID = '36bb2d94-8028-4512-90dd-2386af3fc67c';
|
|
547
|
-
|
|
548
548
|
class GenerateDrawExecutor extends PostboyExecutor {
|
|
549
549
|
constructor(layer, style, type) {
|
|
550
550
|
super();
|
|
@@ -2498,5 +2498,5 @@ class StringifyFeatureHelper {
|
|
|
2498
2498
|
* Generated bundle index. Do not edit.
|
|
2499
2499
|
*/
|
|
2500
2500
|
|
|
2501
|
-
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 };
|
|
2501
|
+
export { AddControlCommand, CalculateAreaExecutor, CancelDrawingCommand, CancelFeatureModificationCommand, CloseTooltipCommand, ClusterLayerComponent, ClusterLayerSettings, DrawSelectionAreaCommand, DrawingType, FeatureLayerComponent, FeatureLayerSettings, FeatureOutputFormat, FilterFeaturesInAreaExecutor, 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 };
|
|
2502
2502
|
//# sourceMappingURL=maps-components.mjs.map
|