@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
|
@@ -625,6 +625,15 @@ class GetFeaturesInPointQuery extends PostboyCallbackMessage {
|
|
|
625
625
|
}
|
|
626
626
|
GetFeaturesInPointQuery.ID = '99bbc56f-34a2-4064-8300-13bb3d0662c1';
|
|
627
627
|
|
|
628
|
+
class FitToFeaturesCommand extends PostboyGenericMessage {
|
|
629
|
+
constructor(features, zoomAfter = 0) {
|
|
630
|
+
super();
|
|
631
|
+
this.features = features;
|
|
632
|
+
this.zoomAfter = zoomAfter;
|
|
633
|
+
}
|
|
634
|
+
}
|
|
635
|
+
FitToFeaturesCommand.ID = '04d67609-0b4c-4f52-aa53-ad0a3db967dc';
|
|
636
|
+
|
|
628
637
|
class AddLayerCommand extends PostboyGenericMessage {
|
|
629
638
|
constructor(layer) {
|
|
630
639
|
super();
|
|
@@ -666,15 +675,6 @@ class RemoveTileCommand extends PostboyGenericMessage {
|
|
|
666
675
|
}
|
|
667
676
|
RemoveTileCommand.ID = 'dab0f861-bb25-46da-9388-717bfaae798f';
|
|
668
677
|
|
|
669
|
-
class FitToFeaturesCommand extends PostboyGenericMessage {
|
|
670
|
-
constructor(features, zoomAfter = 0) {
|
|
671
|
-
super();
|
|
672
|
-
this.features = features;
|
|
673
|
-
this.zoomAfter = zoomAfter;
|
|
674
|
-
}
|
|
675
|
-
}
|
|
676
|
-
FitToFeaturesCommand.ID = '04d67609-0b4c-4f52-aa53-ad0a3db967dc';
|
|
677
|
-
|
|
678
678
|
class GetLayerQuery extends PostboyCallbackMessage {
|
|
679
679
|
constructor(name) {
|
|
680
680
|
super();
|
|
@@ -2693,5 +2693,5 @@ class StringifyFeatureHelper {
|
|
|
2693
2693
|
* Generated bundle index. Do not edit.
|
|
2694
2694
|
*/
|
|
2695
2695
|
|
|
2696
|
-
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 };
|
|
2696
|
+
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 };
|
|
2697
2697
|
//# sourceMappingURL=maps-components.mjs.map
|