@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
|
@@ -402,6 +402,18 @@ class GetFeaturesInAreaQuery extends PostboyCallbackMessage {
|
|
|
402
402
|
}
|
|
403
403
|
GetFeaturesInAreaQuery.ID = 'efcf4271-a07a-40e0-9f02-d4dade40b8ac';
|
|
404
404
|
|
|
405
|
+
class FilterFeaturesInAreaExecutor extends PostboyExecutor {
|
|
406
|
+
constructor(area, features) {
|
|
407
|
+
super();
|
|
408
|
+
this.area = area;
|
|
409
|
+
this.features = features;
|
|
410
|
+
}
|
|
411
|
+
get id() {
|
|
412
|
+
return FilterFeaturesInAreaExecutor.ID;
|
|
413
|
+
}
|
|
414
|
+
}
|
|
415
|
+
FilterFeaturesInAreaExecutor.ID = '36bb2d94-8028-4512-90dd-2386af3fc67c';
|
|
416
|
+
|
|
405
417
|
class AddLayerCommand extends PostboyGenericMessage {
|
|
406
418
|
constructor(layer) {
|
|
407
419
|
super();
|
|
@@ -534,18 +546,6 @@ class FeatureService {
|
|
|
534
546
|
}
|
|
535
547
|
}
|
|
536
548
|
|
|
537
|
-
class FilterFeaturesInAreaExecutor extends PostboyExecutor {
|
|
538
|
-
constructor(area, features) {
|
|
539
|
-
super();
|
|
540
|
-
this.area = area;
|
|
541
|
-
this.features = features;
|
|
542
|
-
}
|
|
543
|
-
get id() {
|
|
544
|
-
return FilterFeaturesInAreaExecutor.ID;
|
|
545
|
-
}
|
|
546
|
-
}
|
|
547
|
-
FilterFeaturesInAreaExecutor.ID = '36bb2d94-8028-4512-90dd-2386af3fc67c';
|
|
548
|
-
|
|
549
549
|
class GenerateDrawExecutor extends PostboyExecutor {
|
|
550
550
|
constructor(layer, style, type) {
|
|
551
551
|
super();
|
|
@@ -2520,5 +2520,5 @@ class StringifyFeatureHelper {
|
|
|
2520
2520
|
* Generated bundle index. Do not edit.
|
|
2521
2521
|
*/
|
|
2522
2522
|
|
|
2523
|
-
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 };
|
|
2523
|
+
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 };
|
|
2524
2524
|
//# sourceMappingURL=maps-components.mjs.map
|