@summeruse/ol 0.5.0 → 0.5.1
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/CHANGELOG.md +7 -0
- package/dist/index.d.ts +71 -59
- package/dist/index.iife.min.js +2 -2
- package/dist/index.js +351 -330
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -2,33 +2,36 @@ import * as vue20 from "vue";
|
|
|
2
2
|
import { CSSProperties, InjectionKey, MaybeRef, MaybeRefOrGetter, Ref, VNode, VNodeChild } from "vue";
|
|
3
3
|
import * as ol0 from "ol";
|
|
4
4
|
import { Feature, Map, Map as OLMap, MapEvent } from "ol";
|
|
5
|
-
import { Extent } from "ol/extent";
|
|
6
5
|
import { Circle, Geometry, LineString, MultiLineString, MultiPoint, MultiPolygon, Point, Polygon } from "ol/geom";
|
|
7
|
-
import VectorLayer from "ol/layer/Vector";
|
|
8
|
-
import VectorSource from "ol/source/Vector";
|
|
9
6
|
import { Circle as Circle$1, Fill, Icon, Stroke, Style, Text } from "ol/style";
|
|
10
7
|
import { Graticule, Layer, Tile } from "ol/layer";
|
|
11
8
|
import HeatmapLayer from "ol/layer/Heatmap";
|
|
9
|
+
import VectorLayer from "ol/layer/Vector";
|
|
12
10
|
import WebGLVectorLayer from "ol/layer/WebGLVector";
|
|
13
11
|
import * as ol_source0 from "ol/source";
|
|
14
12
|
import { BingMaps, OSM, Source, XYZ } from "ol/source";
|
|
15
13
|
import ImageTileSource from "ol/source/ImageTile";
|
|
14
|
+
import VectorSource from "ol/source/Vector";
|
|
16
15
|
import { Projection } from "ol/proj";
|
|
17
16
|
import * as ol_tilegrid0 from "ol/tilegrid";
|
|
17
|
+
import { Extent } from "ol/extent";
|
|
18
18
|
import * as ol_coordinate0 from "ol/coordinate";
|
|
19
19
|
import { Coordinate } from "ol/coordinate";
|
|
20
20
|
import { ObjectEvent } from "ol/Object";
|
|
21
|
-
import * as
|
|
21
|
+
import * as ol_Feature0 from "ol/Feature";
|
|
22
22
|
import { FeatureLike } from "ol/Feature";
|
|
23
|
-
import * as
|
|
24
|
-
import * as
|
|
25
|
-
import * as
|
|
23
|
+
import * as ol_events0 from "ol/events";
|
|
24
|
+
import * as ol_style_Style0 from "ol/style/Style";
|
|
25
|
+
import * as ol_events_Event0 from "ol/events/Event";
|
|
26
26
|
import * as ol_renderer_Layer0 from "ol/renderer/Layer";
|
|
27
27
|
import { FrameState } from "ol/Map";
|
|
28
28
|
import { FlatStyleLike } from "ol/style/flat";
|
|
29
29
|
import proj4 from "proj4";
|
|
30
30
|
import TileLayer from "ol/layer/Tile";
|
|
31
31
|
|
|
32
|
+
//#region constants/distance.d.ts
|
|
33
|
+
declare const ONE_NM = 1852;
|
|
34
|
+
//#endregion
|
|
32
35
|
//#region constants/projection.d.ts
|
|
33
36
|
/** 3857坐标系 球面墨卡托投影坐标系 */
|
|
34
37
|
declare const EPSG_3857 = "EPSG:3857";
|
|
@@ -42,6 +45,7 @@ type ProjectionLike = 'EPSG:3857' | 'EPSG:4326' | 'EPSG:3395';
|
|
|
42
45
|
interface OlMapProps {
|
|
43
46
|
olMap?: Map;
|
|
44
47
|
center?: Coordinate;
|
|
48
|
+
rotation?: number;
|
|
45
49
|
zoom?: number;
|
|
46
50
|
minZoom?: number;
|
|
47
51
|
maxZoom?: number;
|
|
@@ -66,7 +70,9 @@ declare function useOlMap(): Map | undefined;
|
|
|
66
70
|
interface OlMapEmits {
|
|
67
71
|
'update:zoom': [number];
|
|
68
72
|
'update:center': [Coordinate];
|
|
73
|
+
'update:rotation': [number];
|
|
69
74
|
'changeResolution': [ObjectEvent];
|
|
75
|
+
'changeRotation': [ObjectEvent];
|
|
70
76
|
'changeCenter': [ObjectEvent];
|
|
71
77
|
'moveend': [MapEvent];
|
|
72
78
|
'movestart': [MapEvent];
|
|
@@ -85,18 +91,23 @@ declare const __VLS_component: vue20.DefineComponent<OlMapProps, {
|
|
|
85
91
|
}, {}, {}, {}, vue20.ComponentOptionsMixin, vue20.ComponentOptionsMixin, {
|
|
86
92
|
"update:zoom": (args_0: number) => any;
|
|
87
93
|
"update:center": (args_0: ol_coordinate0.Coordinate) => any;
|
|
94
|
+
"update:rotation": (args_0: number) => any;
|
|
88
95
|
changeResolution: (args_0: ObjectEvent) => any;
|
|
96
|
+
changeRotation: (args_0: ObjectEvent) => any;
|
|
89
97
|
changeCenter: (args_0: ObjectEvent) => any;
|
|
90
98
|
moveend: (args_0: MapEvent) => any;
|
|
91
99
|
movestart: (args_0: MapEvent) => any;
|
|
92
100
|
}, string, vue20.PublicProps, Readonly<OlMapProps> & Readonly<{
|
|
93
101
|
"onUpdate:zoom"?: ((args_0: number) => any) | undefined;
|
|
94
102
|
"onUpdate:center"?: ((args_0: ol_coordinate0.Coordinate) => any) | undefined;
|
|
103
|
+
"onUpdate:rotation"?: ((args_0: number) => any) | undefined;
|
|
95
104
|
onChangeResolution?: ((args_0: ObjectEvent) => any) | undefined;
|
|
105
|
+
onChangeRotation?: ((args_0: ObjectEvent) => any) | undefined;
|
|
96
106
|
onChangeCenter?: ((args_0: ObjectEvent) => any) | undefined;
|
|
97
107
|
onMoveend?: ((args_0: MapEvent) => any) | undefined;
|
|
98
108
|
onMovestart?: ((args_0: MapEvent) => any) | undefined;
|
|
99
109
|
}>, {
|
|
110
|
+
rotation: number;
|
|
100
111
|
maxZoom: number;
|
|
101
112
|
minZoom: number;
|
|
102
113
|
olMap: Map;
|
|
@@ -200,6 +211,10 @@ type UseContextmenuFn = (...args: UseContextmenuParams) => UseContextmenuReturn;
|
|
|
200
211
|
declare function kmToNauticalMiles(km: number): number;
|
|
201
212
|
/** 海里转公里 */
|
|
202
213
|
declare function nauticalMilesToKm(nauticalMiles: number): number;
|
|
214
|
+
/** 弧度转角度 */
|
|
215
|
+
declare function rotationToAngle(rotation: number): number;
|
|
216
|
+
/** 角度转弧度 */
|
|
217
|
+
declare function angleToRotation(angle: number): number;
|
|
203
218
|
/** 格式化Rotation */
|
|
204
219
|
declare function formatRotation(rotation: number): number;
|
|
205
220
|
/** 格式化角度 */
|
|
@@ -376,17 +391,17 @@ declare function useDrawLineString(olMap: OLMap, options: DrawLineStringOptions)
|
|
|
376
391
|
setFeatures: (coordinates: Coordinate[][]) => void;
|
|
377
392
|
reset: () => void;
|
|
378
393
|
features: vue20.Ref<{
|
|
379
|
-
on:
|
|
380
|
-
once:
|
|
381
|
-
un:
|
|
394
|
+
on: ol_Feature0.FeatureOnSignature<ol_events0.EventsKey>;
|
|
395
|
+
once: ol_Feature0.FeatureOnSignature<ol_events0.EventsKey>;
|
|
396
|
+
un: ol_Feature0.FeatureOnSignature<void>;
|
|
382
397
|
clone: () => Feature<LineString>;
|
|
383
398
|
getGeometry: () => LineString | undefined;
|
|
384
399
|
getId: () => number | string | undefined;
|
|
385
400
|
getGeometryName: () => string;
|
|
386
|
-
getStyle: () =>
|
|
387
|
-
getStyleFunction: () =>
|
|
401
|
+
getStyle: () => ol_style_Style0.StyleLike | undefined;
|
|
402
|
+
getStyleFunction: () => ol_style_Style0.StyleFunction | undefined;
|
|
388
403
|
setGeometry: (geometry: LineString | undefined) => void;
|
|
389
|
-
setStyle: (style?:
|
|
404
|
+
setStyle: (style?: ol_style_Style0.StyleLike) => void;
|
|
390
405
|
setId: (id: number | string | undefined) => void;
|
|
391
406
|
setGeometryName: (name: string) => void;
|
|
392
407
|
get: (key: string) => any;
|
|
@@ -399,8 +414,8 @@ declare function useDrawLineString(olMap: OLMap, options: DrawLineStringOptions)
|
|
|
399
414
|
} | null;
|
|
400
415
|
hasProperties: () => boolean;
|
|
401
416
|
notify: (key: string, oldValue: any) => void;
|
|
402
|
-
addChangeListener: (key: string, listener:
|
|
403
|
-
removeChangeListener: (key: string, listener:
|
|
417
|
+
addChangeListener: (key: string, listener: ol_events0.Listener) => void;
|
|
418
|
+
removeChangeListener: (key: string, listener: ol_events0.Listener) => void;
|
|
404
419
|
set: (key: string, value: any, silent?: boolean) => void;
|
|
405
420
|
setProperties: (values: {
|
|
406
421
|
[x: string]: any;
|
|
@@ -408,24 +423,24 @@ declare function useDrawLineString(olMap: OLMap, options: DrawLineStringOptions)
|
|
|
408
423
|
unset: (key: string, silent?: boolean) => void;
|
|
409
424
|
changed: () => void;
|
|
410
425
|
getRevision: () => number;
|
|
411
|
-
addEventListener: (type: string, listener:
|
|
412
|
-
dispatchEvent: (event:
|
|
413
|
-
getListeners: (type: string) => Array<
|
|
426
|
+
addEventListener: (type: string, listener: ol_events0.Listener) => void;
|
|
427
|
+
dispatchEvent: (event: ol_events_Event0.default | string) => boolean | undefined;
|
|
428
|
+
getListeners: (type: string) => Array<ol_events0.Listener> | undefined;
|
|
414
429
|
hasListener: (type?: string) => boolean;
|
|
415
|
-
removeEventListener: (type: string, listener:
|
|
430
|
+
removeEventListener: (type: string, listener: ol_events0.Listener) => void;
|
|
416
431
|
dispose: () => void;
|
|
417
432
|
}[], Feature<LineString>[] | {
|
|
418
|
-
on:
|
|
419
|
-
once:
|
|
420
|
-
un:
|
|
433
|
+
on: ol_Feature0.FeatureOnSignature<ol_events0.EventsKey>;
|
|
434
|
+
once: ol_Feature0.FeatureOnSignature<ol_events0.EventsKey>;
|
|
435
|
+
un: ol_Feature0.FeatureOnSignature<void>;
|
|
421
436
|
clone: () => Feature<LineString>;
|
|
422
437
|
getGeometry: () => LineString | undefined;
|
|
423
438
|
getId: () => number | string | undefined;
|
|
424
439
|
getGeometryName: () => string;
|
|
425
|
-
getStyle: () =>
|
|
426
|
-
getStyleFunction: () =>
|
|
440
|
+
getStyle: () => ol_style_Style0.StyleLike | undefined;
|
|
441
|
+
getStyleFunction: () => ol_style_Style0.StyleFunction | undefined;
|
|
427
442
|
setGeometry: (geometry: LineString | undefined) => void;
|
|
428
|
-
setStyle: (style?:
|
|
443
|
+
setStyle: (style?: ol_style_Style0.StyleLike) => void;
|
|
429
444
|
setId: (id: number | string | undefined) => void;
|
|
430
445
|
setGeometryName: (name: string) => void;
|
|
431
446
|
get: (key: string) => any;
|
|
@@ -438,8 +453,8 @@ declare function useDrawLineString(olMap: OLMap, options: DrawLineStringOptions)
|
|
|
438
453
|
} | null;
|
|
439
454
|
hasProperties: () => boolean;
|
|
440
455
|
notify: (key: string, oldValue: any) => void;
|
|
441
|
-
addChangeListener: (key: string, listener:
|
|
442
|
-
removeChangeListener: (key: string, listener:
|
|
456
|
+
addChangeListener: (key: string, listener: ol_events0.Listener) => void;
|
|
457
|
+
removeChangeListener: (key: string, listener: ol_events0.Listener) => void;
|
|
443
458
|
set: (key: string, value: any, silent?: boolean) => void;
|
|
444
459
|
setProperties: (values: {
|
|
445
460
|
[x: string]: any;
|
|
@@ -447,11 +462,11 @@ declare function useDrawLineString(olMap: OLMap, options: DrawLineStringOptions)
|
|
|
447
462
|
unset: (key: string, silent?: boolean) => void;
|
|
448
463
|
changed: () => void;
|
|
449
464
|
getRevision: () => number;
|
|
450
|
-
addEventListener: (type: string, listener:
|
|
451
|
-
dispatchEvent: (event:
|
|
452
|
-
getListeners: (type: string) => Array<
|
|
465
|
+
addEventListener: (type: string, listener: ol_events0.Listener) => void;
|
|
466
|
+
dispatchEvent: (event: ol_events_Event0.default | string) => boolean | undefined;
|
|
467
|
+
getListeners: (type: string) => Array<ol_events0.Listener> | undefined;
|
|
453
468
|
hasListener: (type?: string) => boolean;
|
|
454
|
-
removeEventListener: (type: string, listener:
|
|
469
|
+
removeEventListener: (type: string, listener: ol_events0.Listener) => void;
|
|
455
470
|
dispose: () => void;
|
|
456
471
|
}[]>;
|
|
457
472
|
coordinates: vue20.ComputedRef<Coordinate[][]>;
|
|
@@ -480,17 +495,17 @@ declare function useDrawPolygon(olMap: OLMap, options: DrawPolygonOptions): {
|
|
|
480
495
|
setFeatures: (coordinates?: Coordinate[][][]) => void;
|
|
481
496
|
reset: () => void;
|
|
482
497
|
features: vue20.Ref<{
|
|
483
|
-
on:
|
|
484
|
-
once:
|
|
485
|
-
un:
|
|
498
|
+
on: ol_Feature0.FeatureOnSignature<ol_events0.EventsKey>;
|
|
499
|
+
once: ol_Feature0.FeatureOnSignature<ol_events0.EventsKey>;
|
|
500
|
+
un: ol_Feature0.FeatureOnSignature<void>;
|
|
486
501
|
clone: () => Feature<Polygon>;
|
|
487
502
|
getGeometry: () => Polygon | undefined;
|
|
488
503
|
getId: () => number | string | undefined;
|
|
489
504
|
getGeometryName: () => string;
|
|
490
|
-
getStyle: () =>
|
|
491
|
-
getStyleFunction: () =>
|
|
505
|
+
getStyle: () => ol_style_Style0.StyleLike | undefined;
|
|
506
|
+
getStyleFunction: () => ol_style_Style0.StyleFunction | undefined;
|
|
492
507
|
setGeometry: (geometry: Polygon | undefined) => void;
|
|
493
|
-
setStyle: (style?:
|
|
508
|
+
setStyle: (style?: ol_style_Style0.StyleLike) => void;
|
|
494
509
|
setId: (id: number | string | undefined) => void;
|
|
495
510
|
setGeometryName: (name: string) => void;
|
|
496
511
|
get: (key: string) => any;
|
|
@@ -503,8 +518,8 @@ declare function useDrawPolygon(olMap: OLMap, options: DrawPolygonOptions): {
|
|
|
503
518
|
} | null;
|
|
504
519
|
hasProperties: () => boolean;
|
|
505
520
|
notify: (key: string, oldValue: any) => void;
|
|
506
|
-
addChangeListener: (key: string, listener:
|
|
507
|
-
removeChangeListener: (key: string, listener:
|
|
521
|
+
addChangeListener: (key: string, listener: ol_events0.Listener) => void;
|
|
522
|
+
removeChangeListener: (key: string, listener: ol_events0.Listener) => void;
|
|
508
523
|
set: (key: string, value: any, silent?: boolean) => void;
|
|
509
524
|
setProperties: (values: {
|
|
510
525
|
[x: string]: any;
|
|
@@ -512,24 +527,24 @@ declare function useDrawPolygon(olMap: OLMap, options: DrawPolygonOptions): {
|
|
|
512
527
|
unset: (key: string, silent?: boolean) => void;
|
|
513
528
|
changed: () => void;
|
|
514
529
|
getRevision: () => number;
|
|
515
|
-
addEventListener: (type: string, listener:
|
|
516
|
-
dispatchEvent: (event:
|
|
517
|
-
getListeners: (type: string) => Array<
|
|
530
|
+
addEventListener: (type: string, listener: ol_events0.Listener) => void;
|
|
531
|
+
dispatchEvent: (event: ol_events_Event0.default | string) => boolean | undefined;
|
|
532
|
+
getListeners: (type: string) => Array<ol_events0.Listener> | undefined;
|
|
518
533
|
hasListener: (type?: string) => boolean;
|
|
519
|
-
removeEventListener: (type: string, listener:
|
|
534
|
+
removeEventListener: (type: string, listener: ol_events0.Listener) => void;
|
|
520
535
|
dispose: () => void;
|
|
521
536
|
}[], Feature<Polygon>[] | {
|
|
522
|
-
on:
|
|
523
|
-
once:
|
|
524
|
-
un:
|
|
537
|
+
on: ol_Feature0.FeatureOnSignature<ol_events0.EventsKey>;
|
|
538
|
+
once: ol_Feature0.FeatureOnSignature<ol_events0.EventsKey>;
|
|
539
|
+
un: ol_Feature0.FeatureOnSignature<void>;
|
|
525
540
|
clone: () => Feature<Polygon>;
|
|
526
541
|
getGeometry: () => Polygon | undefined;
|
|
527
542
|
getId: () => number | string | undefined;
|
|
528
543
|
getGeometryName: () => string;
|
|
529
|
-
getStyle: () =>
|
|
530
|
-
getStyleFunction: () =>
|
|
544
|
+
getStyle: () => ol_style_Style0.StyleLike | undefined;
|
|
545
|
+
getStyleFunction: () => ol_style_Style0.StyleFunction | undefined;
|
|
531
546
|
setGeometry: (geometry: Polygon | undefined) => void;
|
|
532
|
-
setStyle: (style?:
|
|
547
|
+
setStyle: (style?: ol_style_Style0.StyleLike) => void;
|
|
533
548
|
setId: (id: number | string | undefined) => void;
|
|
534
549
|
setGeometryName: (name: string) => void;
|
|
535
550
|
get: (key: string) => any;
|
|
@@ -542,8 +557,8 @@ declare function useDrawPolygon(olMap: OLMap, options: DrawPolygonOptions): {
|
|
|
542
557
|
} | null;
|
|
543
558
|
hasProperties: () => boolean;
|
|
544
559
|
notify: (key: string, oldValue: any) => void;
|
|
545
|
-
addChangeListener: (key: string, listener:
|
|
546
|
-
removeChangeListener: (key: string, listener:
|
|
560
|
+
addChangeListener: (key: string, listener: ol_events0.Listener) => void;
|
|
561
|
+
removeChangeListener: (key: string, listener: ol_events0.Listener) => void;
|
|
547
562
|
set: (key: string, value: any, silent?: boolean) => void;
|
|
548
563
|
setProperties: (values: {
|
|
549
564
|
[x: string]: any;
|
|
@@ -551,11 +566,11 @@ declare function useDrawPolygon(olMap: OLMap, options: DrawPolygonOptions): {
|
|
|
551
566
|
unset: (key: string, silent?: boolean) => void;
|
|
552
567
|
changed: () => void;
|
|
553
568
|
getRevision: () => number;
|
|
554
|
-
addEventListener: (type: string, listener:
|
|
555
|
-
dispatchEvent: (event:
|
|
556
|
-
getListeners: (type: string) => Array<
|
|
569
|
+
addEventListener: (type: string, listener: ol_events0.Listener) => void;
|
|
570
|
+
dispatchEvent: (event: ol_events_Event0.default | string) => boolean | undefined;
|
|
571
|
+
getListeners: (type: string) => Array<ol_events0.Listener> | undefined;
|
|
557
572
|
hasListener: (type?: string) => boolean;
|
|
558
|
-
removeEventListener: (type: string, listener:
|
|
573
|
+
removeEventListener: (type: string, listener: ol_events0.Listener) => void;
|
|
559
574
|
dispose: () => void;
|
|
560
575
|
}[]>;
|
|
561
576
|
coordinates: vue20.ComputedRef<Coordinate[][][]>;
|
|
@@ -662,7 +677,4 @@ declare function useSwitchBaseLayer(data: {
|
|
|
662
677
|
visibleLayerName: vue20.Ref<string, string>;
|
|
663
678
|
};
|
|
664
679
|
//#endregion
|
|
665
|
-
|
|
666
|
-
declare const ONE_NM = 1852;
|
|
667
|
-
//#endregion
|
|
668
|
-
export { BingMapsSourceOptions, CanvasLayerOptions, CircleOptions, ContextmenuItem, ContextmenuItemBase, ContextmenuList, ContextmenuOption, ContextmenuOptionBase, ContextmenuOptions, ContextmenuPosition, CreateBingLayerOptions, CreateOpenStreetMapLayerOptions, CreateTianDiTuLayerOptions, CreateTianDiTuUrlOptions, DrawLineStringOptions, DrawPolygonOptions, EPSG_3395, EPSG_3857, EPSG_3857ExtentToEPSG_4326, EPSG_3857ToEPSG_4326, EPSG_4326, EPSG_4326ExtentToEPSG_3857, EPSG_4326ToEPSG_3857, FeatureOptions, FillOptions, GraticuleOptions, HeatmapLayerOptions, IconOptions, ImageTileSourceOptions, ONE_NM, _default as OlMap, OlMapEmits, OlMapInst, OlMapProps, OpenStreetMapSourceOptions, Option, PMTilesLayerOptions, PointermoveItem, PointermoveList, PointermovePosition, ProjectionLike, StrokeOptions, StyleOptions, T_MAP_TYPE, TextOptions, TileLayerOptions, UseContextmenuFn, UseContextmenuParams, UseContextmenuReturn, UseGraticuleOptions, UseGraticuleReturn, UsePointermoveFn, UsePointermoveOptions, UsePointermoveParams, UsePointermoveReturn, VectorLayerOptions, VectorSourceOptions, WebGLVectorLayerOptions, XYZLayerOptions, XYZ_SourceOptions, _CircleOptions, _GraticuleOptions, _StyleOptions, _TextOptions, _VectorLayerOptions, _VectorSourceOptions, _WebGLVectorLayerOptions, createBingLayer, createCanvasLayer, createCircle, createCircleFeature, createCircleStyle, createFeature, createHeatmapLayer, createHeatmapLayerOptions, createLineString, createLineStringFeature, createMultiLineString, createMultiLineStringFeature, createMultiPoint, createMultiPointFeature, createMultiPolygon, createMultiPolygonFeature, createOpenStreetMapLayer, createPMTilesLayer, createPoint, createPointFeature, createPolygon, createPolygonFeature, createStyle, createTextStyle, createTianDiTuLayer, createTianDiTuUrl, createTileGrid, createVectorLayer, createVectorSource, createWebGLVectorLayer, createXYZLayer, formatAngle, formatRotation, kmToNauticalMiles, nauticalMilesToKm, olMapInjectionKey, proj4, registerEPSG_3395, useContextmenu, useDrawLineString, useDrawPolygon, useGraticule, useOlMap, usePointermove, useSwitchBaseLayer };
|
|
680
|
+
export { BingMapsSourceOptions, CanvasLayerOptions, CircleOptions, ContextmenuItem, ContextmenuItemBase, ContextmenuList, ContextmenuOption, ContextmenuOptionBase, ContextmenuOptions, ContextmenuPosition, CreateBingLayerOptions, CreateOpenStreetMapLayerOptions, CreateTianDiTuLayerOptions, CreateTianDiTuUrlOptions, DrawLineStringOptions, DrawPolygonOptions, EPSG_3395, EPSG_3857, EPSG_3857ExtentToEPSG_4326, EPSG_3857ToEPSG_4326, EPSG_4326, EPSG_4326ExtentToEPSG_3857, EPSG_4326ToEPSG_3857, FeatureOptions, FillOptions, GraticuleOptions, HeatmapLayerOptions, IconOptions, ImageTileSourceOptions, ONE_NM, _default as OlMap, OlMapEmits, OlMapInst, OlMapProps, OpenStreetMapSourceOptions, Option, PMTilesLayerOptions, PointermoveItem, PointermoveList, PointermovePosition, ProjectionLike, StrokeOptions, StyleOptions, T_MAP_TYPE, TextOptions, TileLayerOptions, UseContextmenuFn, UseContextmenuParams, UseContextmenuReturn, UseGraticuleOptions, UseGraticuleReturn, UsePointermoveFn, UsePointermoveOptions, UsePointermoveParams, UsePointermoveReturn, VectorLayerOptions, VectorSourceOptions, WebGLVectorLayerOptions, XYZLayerOptions, XYZ_SourceOptions, _CircleOptions, _GraticuleOptions, _StyleOptions, _TextOptions, _VectorLayerOptions, _VectorSourceOptions, _WebGLVectorLayerOptions, angleToRotation, createBingLayer, createCanvasLayer, createCircle, createCircleFeature, createCircleStyle, createFeature, createHeatmapLayer, createHeatmapLayerOptions, createLineString, createLineStringFeature, createMultiLineString, createMultiLineStringFeature, createMultiPoint, createMultiPointFeature, createMultiPolygon, createMultiPolygonFeature, createOpenStreetMapLayer, createPMTilesLayer, createPoint, createPointFeature, createPolygon, createPolygonFeature, createStyle, createTextStyle, createTianDiTuLayer, createTianDiTuUrl, createTileGrid, createVectorLayer, createVectorSource, createWebGLVectorLayer, createXYZLayer, formatAngle, formatRotation, kmToNauticalMiles, nauticalMilesToKm, olMapInjectionKey, proj4, registerEPSG_3395, rotationToAngle, useContextmenu, useDrawLineString, useDrawPolygon, useGraticule, useOlMap, usePointermove, useSwitchBaseLayer };
|