@artstesh/maps 5.1.20 → 5.1.21
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/models/index.mjs +2 -1
- package/dist/esm2022/map/models/polygon.model.mjs +8 -1
- package/dist/esm2022/src/map/models/index.mjs +2 -1
- package/dist/esm2022/src/map/models/polygon.model.mjs +8 -1
- package/dist/fesm2022/maps-components-src-map.mjs +10 -5
- package/dist/fesm2022/maps-components-src-map.mjs.map +1 -1
- package/dist/fesm2022/maps-components.mjs +10 -5
- package/dist/fesm2022/maps-components.mjs.map +1 -1
- package/dist/map/models/index.d.ts +1 -0
- package/dist/map/models/polygon.model.d.ts +3 -0
- package/dist/src/map/models/index.d.ts +1 -0
- package/dist/src/map/models/polygon.model.d.ts +3 -0
- package/package.json +1 -1
|
@@ -3,7 +3,7 @@ import { Component, Injectable, ChangeDetectionStrategy, Input, ViewChild, NgMod
|
|
|
3
3
|
import * as i4 from '@angular/common';
|
|
4
4
|
import { CommonModule } from '@angular/common';
|
|
5
5
|
import { Feature, Collection } from 'ol';
|
|
6
|
-
import { Point } from 'ol/geom';
|
|
6
|
+
import { Point, Circle } from 'ol/geom';
|
|
7
7
|
import { GeoJSON, WKT } from 'ol/format';
|
|
8
8
|
import { getCenter, createEmpty, extend } from 'ol/extent';
|
|
9
9
|
import { Control, Zoom } from 'ol/control';
|
|
@@ -26,7 +26,7 @@ import Map from 'ol/Map';
|
|
|
26
26
|
import View from 'ol/View';
|
|
27
27
|
import Overlay from 'ol/Overlay';
|
|
28
28
|
import Style from 'ol/style/Style';
|
|
29
|
-
import { Icon, Circle, Fill, Stroke, Text } from 'ol/style';
|
|
29
|
+
import { Icon, Circle as Circle$1, Fill, Stroke, Text } from 'ol/style';
|
|
30
30
|
import { METERS_PER_UNIT } from 'ol/proj/epsg4326';
|
|
31
31
|
|
|
32
32
|
class DestructibleComponent {
|
|
@@ -245,6 +245,11 @@ class PolygonModel {
|
|
|
245
245
|
feature.setId(id);
|
|
246
246
|
return new PolygonModel(feature, id, info);
|
|
247
247
|
}
|
|
248
|
+
static circle(id, lat, lng, radius, info) {
|
|
249
|
+
let feature = new Feature(new Circle([lng, lat], radius));
|
|
250
|
+
feature.setId(id);
|
|
251
|
+
return new PolygonModel(feature, id, info);
|
|
252
|
+
}
|
|
248
253
|
}
|
|
249
254
|
|
|
250
255
|
/**
|
|
@@ -2623,7 +2628,7 @@ class MarkerStyleHelper {
|
|
|
2623
2628
|
*/
|
|
2624
2629
|
static circle(radius, fill, strokeColor, strokeWidth = 1) {
|
|
2625
2630
|
return new Style({
|
|
2626
|
-
image: new Circle({
|
|
2631
|
+
image: new Circle$1({
|
|
2627
2632
|
radius,
|
|
2628
2633
|
fill: new Fill({ color: fill }),
|
|
2629
2634
|
stroke: new Stroke({ color: strokeColor, width: strokeWidth }),
|
|
@@ -2678,7 +2683,7 @@ class PolygonStyleHelper {
|
|
|
2678
2683
|
*/
|
|
2679
2684
|
static edit(fill, stroke, strokeWidth = 1, pinRadius = 5) {
|
|
2680
2685
|
return new Style({
|
|
2681
|
-
image: new Circle({
|
|
2686
|
+
image: new Circle$1({
|
|
2682
2687
|
fill: new Fill({
|
|
2683
2688
|
color: stroke,
|
|
2684
2689
|
}),
|
|
@@ -2786,5 +2791,5 @@ class StringifyFeatureHelper {
|
|
|
2786
2791
|
* Generated bundle index. Do not edit.
|
|
2787
2792
|
*/
|
|
2788
2793
|
|
|
2789
|
-
export { AddControlCommand, CalculateAreaExecutor, CancelDrawingCommand, CancelFeatureModificationCommand, CloseTooltipCommand, ClusterLayerComponent, ClusterLayerSettings, DrawSelectionAreaCommand, DrawingType, FeatureLayerComponent, FeatureLayerSettings, FeatureOutputFormat, FilterFeaturesInAreaExecutor, FilterFeaturesInPointExecutor, FitToPolygonsCommand, GetFeaturesInAreaQuery, GetFeaturesInPointQuery, 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 };
|
|
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 };
|
|
2790
2795
|
//# sourceMappingURL=maps-components.mjs.map
|