@artstesh/maps 4.1.20 → 4.1.22
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 +10 -10
- package/dist/fesm2015/maps-components-src-map.mjs.map +1 -1
- package/dist/fesm2015/maps-components.mjs +10 -10
- package/dist/fesm2015/maps-components.mjs.map +1 -1
- package/dist/fesm2020/maps-components-src-map.mjs +10 -10
- package/dist/fesm2020/maps-components-src-map.mjs.map +1 -1
- package/dist/fesm2020/maps-components.mjs +10 -10
- 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
|
@@ -626,6 +626,15 @@ class GetFeaturesInPointQuery extends PostboyCallbackMessage {
|
|
|
626
626
|
}
|
|
627
627
|
GetFeaturesInPointQuery.ID = '99bbc56f-34a2-4064-8300-13bb3d0662c1';
|
|
628
628
|
|
|
629
|
+
class FitToFeaturesCommand extends PostboyGenericMessage {
|
|
630
|
+
constructor(features, zoomAfter = 0) {
|
|
631
|
+
super();
|
|
632
|
+
this.features = features;
|
|
633
|
+
this.zoomAfter = zoomAfter;
|
|
634
|
+
}
|
|
635
|
+
}
|
|
636
|
+
FitToFeaturesCommand.ID = '04d67609-0b4c-4f52-aa53-ad0a3db967dc';
|
|
637
|
+
|
|
629
638
|
class AddLayerCommand extends PostboyGenericMessage {
|
|
630
639
|
constructor(layer) {
|
|
631
640
|
super();
|
|
@@ -667,15 +676,6 @@ class RemoveTileCommand extends PostboyGenericMessage {
|
|
|
667
676
|
}
|
|
668
677
|
RemoveTileCommand.ID = 'dab0f861-bb25-46da-9388-717bfaae798f';
|
|
669
678
|
|
|
670
|
-
class FitToFeaturesCommand extends PostboyGenericMessage {
|
|
671
|
-
constructor(features, zoomAfter = 0) {
|
|
672
|
-
super();
|
|
673
|
-
this.features = features;
|
|
674
|
-
this.zoomAfter = zoomAfter;
|
|
675
|
-
}
|
|
676
|
-
}
|
|
677
|
-
FitToFeaturesCommand.ID = '04d67609-0b4c-4f52-aa53-ad0a3db967dc';
|
|
678
|
-
|
|
679
679
|
class GetLayerQuery extends PostboyCallbackMessage {
|
|
680
680
|
constructor(name) {
|
|
681
681
|
super();
|
|
@@ -2716,5 +2716,5 @@ class StringifyFeatureHelper {
|
|
|
2716
2716
|
* Generated bundle index. Do not edit.
|
|
2717
2717
|
*/
|
|
2718
2718
|
|
|
2719
|
-
export { AddControlCommand, CalculateAreaExecutor, CancelDrawingCommand, CancelFeatureModificationCommand, CloseTooltipCommand, ClusterLayerComponent, ClusterLayerSettings, DrawSelectionAreaCommand, DrawingType, FeatureLayerComponent, FeatureLayerSettings, FeatureOutputFormat, FilterFeaturesInAreaExecutor, FilterFeaturesInPointExecutor, FitToPolygonsCommand, GetFeaturesInAreaQuery, GetFeaturesInPointQuery, GetMapPositionExecutor, MapClickEvent, MapConstants, 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 };
|
|
2719
|
+
export { AddControlCommand, CalculateAreaExecutor, CancelDrawingCommand, CancelFeatureModificationCommand, CloseTooltipCommand, ClusterLayerComponent, ClusterLayerSettings, DrawSelectionAreaCommand, DrawingType, FeatureLayerComponent, FeatureLayerSettings, FeatureOutputFormat, FilterFeaturesInAreaExecutor, FilterFeaturesInPointExecutor, FitToFeaturesCommand, FitToPolygonsCommand, GetFeaturesInAreaQuery, GetFeaturesInPointQuery, GetMapPositionExecutor, MapClickEvent, MapConstants, 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 };
|
|
2720
2720
|
//# sourceMappingURL=maps-components.mjs.map
|