@artstesh/maps 4.1.19 → 4.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.
@@ -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 {
@@ -238,8 +238,8 @@ class PolygonModel {
238
238
  feature.setId(id);
239
239
  return new PolygonModel(feature, id, info);
240
240
  }
241
- static circle(id, lat, lng, radius, info) {
242
- let feature = new Feature(new Circle([lng, lat], radius));
241
+ static circle(id, lat, lng, radius, vertices = 32, info) {
242
+ let feature = new Feature(circular([lng, lat], radius, vertices));
243
243
  feature.setId(id);
244
244
  return new PolygonModel(feature, id, info);
245
245
  }
@@ -2530,7 +2530,7 @@ class MarkerStyleHelper {
2530
2530
  */
2531
2531
  static circle(radius, fill, strokeColor, strokeWidth = 1) {
2532
2532
  return new Style({
2533
- image: new Circle$1({
2533
+ image: new Circle({
2534
2534
  radius,
2535
2535
  fill: new Fill({ color: fill }),
2536
2536
  stroke: new Stroke({ color: strokeColor, width: strokeWidth }),
@@ -2585,7 +2585,7 @@ class PolygonStyleHelper {
2585
2585
  */
2586
2586
  static edit(fill, stroke, strokeWidth = 1, pinRadius = 5) {
2587
2587
  return new Style({
2588
- image: new Circle$1({
2588
+ image: new Circle({
2589
2589
  fill: new Fill({
2590
2590
  color: stroke,
2591
2591
  }),