@artstesh/maps 4.1.19 → 4.1.20

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.
@@ -3,9 +3,10 @@ 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, Circle } from 'ol/geom';
6
+ import { Point } from 'ol/geom';
7
7
  import { GeoJSON, WKT } from 'ol/format';
8
8
  import { getCenter, createEmpty, extend } from 'ol/extent';
9
+ import Polygon, { circular, fromExtent } from 'ol/geom/Polygon';
9
10
  import { Control, Zoom } from 'ol/control';
10
11
  import { get, useGeographic, transform } from 'ol/proj';
11
12
  import { PostboyGenericMessage, PostboyCallbackMessage, PostboyExecutor, PostboyService, PostboyAbstractRegistrator } from '@artstesh/postboy';
@@ -19,14 +20,13 @@ import TileLayer from 'ol/layer/Tile';
19
20
  import OSM from 'ol/source/OSM';
20
21
  import { Vector as Vector$1 } from 'ol/layer';
21
22
  import { bbox } from 'ol/loadingstrategy';
22
- import Polygon, { fromExtent } from 'ol/geom/Polygon';
23
23
  import Cluster from 'ol/source/Cluster';
24
24
  import { combineLatest } from 'rxjs';
25
25
  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 as Circle$1, Fill, Stroke, Text } from 'ol/style';
29
+ import { Icon, Circle, Fill, Stroke, Text } from 'ol/style';
30
30
  import { METERS_PER_UNIT } from 'ol/proj/epsg4326';
31
31
 
32
32
  class DestructibleComponent {
@@ -239,8 +239,8 @@ class PolygonModel {
239
239
  feature.setId(id);
240
240
  return new PolygonModel(feature, id, info);
241
241
  }
242
- static circle(id, lat, lng, radius, info) {
243
- let feature = new Feature(new Circle([lng, lat], radius));
242
+ static circle(id, lat, lng, radius, vertices = 32, info) {
243
+ let feature = new Feature(circular([lng, lat], radius, vertices));
244
244
  feature.setId(id);
245
245
  return new PolygonModel(feature, id, info);
246
246
  }
@@ -2553,7 +2553,7 @@ class MarkerStyleHelper {
2553
2553
  */
2554
2554
  static circle(radius, fill, strokeColor, strokeWidth = 1) {
2555
2555
  return new Style({
2556
- image: new Circle$1({
2556
+ image: new Circle({
2557
2557
  radius,
2558
2558
  fill: new Fill({ color: fill }),
2559
2559
  stroke: new Stroke({ color: strokeColor, width: strokeWidth }),
@@ -2608,7 +2608,7 @@ class PolygonStyleHelper {
2608
2608
  */
2609
2609
  static edit(fill, stroke, strokeWidth = 1, pinRadius = 5) {
2610
2610
  return new Style({
2611
- image: new Circle$1({
2611
+ image: new Circle({
2612
2612
  fill: new Fill({
2613
2613
  color: stroke,
2614
2614
  }),