@artstesh/maps 6.0.13 → 6.0.15
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/esm2022/map/messages/index.mjs +2 -1
- package/dist/esm2022/src/map/messages/index.mjs +2 -1
- package/dist/fesm2022/maps-components-src-map.mjs +12 -12
- package/dist/fesm2022/maps-components-src-map.mjs.map +1 -1
- package/dist/fesm2022/maps-components.mjs +12 -12
- package/dist/fesm2022/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
|
@@ -665,6 +665,17 @@ class GetFeaturesInPointQuery extends PostboyCallbackMessage {
|
|
|
665
665
|
}
|
|
666
666
|
}
|
|
667
667
|
|
|
668
|
+
class FitToFeaturesCommand extends PostboyGenericMessage {
|
|
669
|
+
features;
|
|
670
|
+
zoomAfter;
|
|
671
|
+
static ID = '04d67609-0b4c-4f52-aa53-ad0a3db967dc';
|
|
672
|
+
constructor(features, zoomAfter = 0) {
|
|
673
|
+
super();
|
|
674
|
+
this.features = features;
|
|
675
|
+
this.zoomAfter = zoomAfter;
|
|
676
|
+
}
|
|
677
|
+
}
|
|
678
|
+
|
|
668
679
|
class AddLayerCommand extends PostboyGenericMessage {
|
|
669
680
|
layer;
|
|
670
681
|
static ID = '7fe68d71-350f-47e2-b1ae-62cc333e1572';
|
|
@@ -712,17 +723,6 @@ class RemoveTileCommand extends PostboyGenericMessage {
|
|
|
712
723
|
}
|
|
713
724
|
}
|
|
714
725
|
|
|
715
|
-
class FitToFeaturesCommand extends PostboyGenericMessage {
|
|
716
|
-
features;
|
|
717
|
-
zoomAfter;
|
|
718
|
-
static ID = '04d67609-0b4c-4f52-aa53-ad0a3db967dc';
|
|
719
|
-
constructor(features, zoomAfter = 0) {
|
|
720
|
-
super();
|
|
721
|
-
this.features = features;
|
|
722
|
-
this.zoomAfter = zoomAfter;
|
|
723
|
-
}
|
|
724
|
-
}
|
|
725
|
-
|
|
726
726
|
class GetLayerQuery extends PostboyCallbackMessage {
|
|
727
727
|
name;
|
|
728
728
|
static ID = 'd2683490-2aa2-4dee-855d-f752ce4d3be5';
|
|
@@ -2791,5 +2791,5 @@ class StringifyFeatureHelper {
|
|
|
2791
2791
|
* Generated bundle index. Do not edit.
|
|
2792
2792
|
*/
|
|
2793
2793
|
|
|
2794
|
-
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 };
|
|
2794
|
+
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 };
|
|
2795
2795
|
//# sourceMappingURL=maps-components.mjs.map
|