@summeruse/ol 0.5.1 → 0.6.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 +16 -0
- package/dist/index.d.ts +108 -59
- package/dist/index.iife.min.js +2 -2
- package/dist/index.js +168 -40
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @summeruse/ol
|
|
2
2
|
|
|
3
|
+
## 0.6.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 8b4a43e: fix(utils/layer): 允许刷新函数返回布尔值以控制画布清除
|
|
8
|
+
|
|
9
|
+
## 0.6.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- 6a8ca7e: feat(composables): 新增 useMapClick 组合式函数处理地图点击事件
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- d727683: feat(usePointermove): 支持 hitTolerance 并按容差分组优化检测性能
|
|
18
|
+
|
|
3
19
|
## 0.5.1
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -18,15 +18,16 @@ 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_Feature5 from "ol/Feature";
|
|
22
22
|
import { FeatureLike } from "ol/Feature";
|
|
23
|
-
import * as
|
|
24
|
-
import * as
|
|
25
|
-
import * as
|
|
23
|
+
import * as ol_events13 from "ol/events";
|
|
24
|
+
import * as ol_style_Style5 from "ol/style/Style";
|
|
25
|
+
import * as ol_events_Event1 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
|
+
import { Pixel } from "ol/pixel";
|
|
30
31
|
import TileLayer from "ol/layer/Tile";
|
|
31
32
|
|
|
32
33
|
//#region constants/distance.d.ts
|
|
@@ -107,9 +108,9 @@ declare const __VLS_component: vue20.DefineComponent<OlMapProps, {
|
|
|
107
108
|
onMoveend?: ((args_0: MapEvent) => any) | undefined;
|
|
108
109
|
onMovestart?: ((args_0: MapEvent) => any) | undefined;
|
|
109
110
|
}>, {
|
|
110
|
-
rotation: number;
|
|
111
111
|
maxZoom: number;
|
|
112
112
|
minZoom: number;
|
|
113
|
+
rotation: number;
|
|
113
114
|
olMap: Map;
|
|
114
115
|
center: ol_coordinate0.Coordinate;
|
|
115
116
|
zoom: number;
|
|
@@ -137,6 +138,9 @@ type OlMapInst = InstanceType<typeof _default>;
|
|
|
137
138
|
//#region types/index.d.ts
|
|
138
139
|
type ForEachFeatureAtPixelCallbackOptions = Parameters<Parameters<OLMap['forEachFeatureAtPixel']>[1]>;
|
|
139
140
|
type LayerLike = ForEachFeatureAtPixelCallbackOptions[1];
|
|
141
|
+
interface Option {
|
|
142
|
+
[key: string]: any;
|
|
143
|
+
}
|
|
140
144
|
//#endregion
|
|
141
145
|
//#region composables/useContextmenu/index.d.ts
|
|
142
146
|
interface ContextmenuPosition {
|
|
@@ -344,7 +348,7 @@ type CanvasLayerOptions = ConstructorParameters<typeof Layer>[0];
|
|
|
344
348
|
declare function createCanvasLayer(olMap: OLMap, refresh: (frameState: FrameState) => {
|
|
345
349
|
imageBitmap: ImageBitmap;
|
|
346
350
|
dpi: number;
|
|
347
|
-
} | undefined, options?: CanvasLayerOptions): {
|
|
351
|
+
} | boolean | undefined, options?: CanvasLayerOptions): {
|
|
348
352
|
layer: Layer<Source, ol_renderer_Layer0.default<any>>;
|
|
349
353
|
source: Source;
|
|
350
354
|
};
|
|
@@ -391,17 +395,17 @@ declare function useDrawLineString(olMap: OLMap, options: DrawLineStringOptions)
|
|
|
391
395
|
setFeatures: (coordinates: Coordinate[][]) => void;
|
|
392
396
|
reset: () => void;
|
|
393
397
|
features: vue20.Ref<{
|
|
394
|
-
on:
|
|
395
|
-
once:
|
|
396
|
-
un:
|
|
398
|
+
on: ol_Feature5.FeatureOnSignature<ol_events13.EventsKey>;
|
|
399
|
+
once: ol_Feature5.FeatureOnSignature<ol_events13.EventsKey>;
|
|
400
|
+
un: ol_Feature5.FeatureOnSignature<void>;
|
|
397
401
|
clone: () => Feature<LineString>;
|
|
398
402
|
getGeometry: () => LineString | undefined;
|
|
399
403
|
getId: () => number | string | undefined;
|
|
400
404
|
getGeometryName: () => string;
|
|
401
|
-
getStyle: () =>
|
|
402
|
-
getStyleFunction: () =>
|
|
405
|
+
getStyle: () => ol_style_Style5.StyleLike | undefined;
|
|
406
|
+
getStyleFunction: () => ol_style_Style5.StyleFunction | undefined;
|
|
403
407
|
setGeometry: (geometry: LineString | undefined) => void;
|
|
404
|
-
setStyle: (style?:
|
|
408
|
+
setStyle: (style?: ol_style_Style5.StyleLike) => void;
|
|
405
409
|
setId: (id: number | string | undefined) => void;
|
|
406
410
|
setGeometryName: (name: string) => void;
|
|
407
411
|
get: (key: string) => any;
|
|
@@ -414,8 +418,8 @@ declare function useDrawLineString(olMap: OLMap, options: DrawLineStringOptions)
|
|
|
414
418
|
} | null;
|
|
415
419
|
hasProperties: () => boolean;
|
|
416
420
|
notify: (key: string, oldValue: any) => void;
|
|
417
|
-
addChangeListener: (key: string, listener:
|
|
418
|
-
removeChangeListener: (key: string, listener:
|
|
421
|
+
addChangeListener: (key: string, listener: ol_events13.Listener) => void;
|
|
422
|
+
removeChangeListener: (key: string, listener: ol_events13.Listener) => void;
|
|
419
423
|
set: (key: string, value: any, silent?: boolean) => void;
|
|
420
424
|
setProperties: (values: {
|
|
421
425
|
[x: string]: any;
|
|
@@ -423,24 +427,24 @@ declare function useDrawLineString(olMap: OLMap, options: DrawLineStringOptions)
|
|
|
423
427
|
unset: (key: string, silent?: boolean) => void;
|
|
424
428
|
changed: () => void;
|
|
425
429
|
getRevision: () => number;
|
|
426
|
-
addEventListener: (type: string, listener:
|
|
427
|
-
dispatchEvent: (event:
|
|
428
|
-
getListeners: (type: string) => Array<
|
|
430
|
+
addEventListener: (type: string, listener: ol_events13.Listener) => void;
|
|
431
|
+
dispatchEvent: (event: ol_events_Event1.default | string) => boolean | undefined;
|
|
432
|
+
getListeners: (type: string) => Array<ol_events13.Listener> | undefined;
|
|
429
433
|
hasListener: (type?: string) => boolean;
|
|
430
|
-
removeEventListener: (type: string, listener:
|
|
434
|
+
removeEventListener: (type: string, listener: ol_events13.Listener) => void;
|
|
431
435
|
dispose: () => void;
|
|
432
436
|
}[], Feature<LineString>[] | {
|
|
433
|
-
on:
|
|
434
|
-
once:
|
|
435
|
-
un:
|
|
437
|
+
on: ol_Feature5.FeatureOnSignature<ol_events13.EventsKey>;
|
|
438
|
+
once: ol_Feature5.FeatureOnSignature<ol_events13.EventsKey>;
|
|
439
|
+
un: ol_Feature5.FeatureOnSignature<void>;
|
|
436
440
|
clone: () => Feature<LineString>;
|
|
437
441
|
getGeometry: () => LineString | undefined;
|
|
438
442
|
getId: () => number | string | undefined;
|
|
439
443
|
getGeometryName: () => string;
|
|
440
|
-
getStyle: () =>
|
|
441
|
-
getStyleFunction: () =>
|
|
444
|
+
getStyle: () => ol_style_Style5.StyleLike | undefined;
|
|
445
|
+
getStyleFunction: () => ol_style_Style5.StyleFunction | undefined;
|
|
442
446
|
setGeometry: (geometry: LineString | undefined) => void;
|
|
443
|
-
setStyle: (style?:
|
|
447
|
+
setStyle: (style?: ol_style_Style5.StyleLike) => void;
|
|
444
448
|
setId: (id: number | string | undefined) => void;
|
|
445
449
|
setGeometryName: (name: string) => void;
|
|
446
450
|
get: (key: string) => any;
|
|
@@ -453,8 +457,8 @@ declare function useDrawLineString(olMap: OLMap, options: DrawLineStringOptions)
|
|
|
453
457
|
} | null;
|
|
454
458
|
hasProperties: () => boolean;
|
|
455
459
|
notify: (key: string, oldValue: any) => void;
|
|
456
|
-
addChangeListener: (key: string, listener:
|
|
457
|
-
removeChangeListener: (key: string, listener:
|
|
460
|
+
addChangeListener: (key: string, listener: ol_events13.Listener) => void;
|
|
461
|
+
removeChangeListener: (key: string, listener: ol_events13.Listener) => void;
|
|
458
462
|
set: (key: string, value: any, silent?: boolean) => void;
|
|
459
463
|
setProperties: (values: {
|
|
460
464
|
[x: string]: any;
|
|
@@ -462,11 +466,11 @@ declare function useDrawLineString(olMap: OLMap, options: DrawLineStringOptions)
|
|
|
462
466
|
unset: (key: string, silent?: boolean) => void;
|
|
463
467
|
changed: () => void;
|
|
464
468
|
getRevision: () => number;
|
|
465
|
-
addEventListener: (type: string, listener:
|
|
466
|
-
dispatchEvent: (event:
|
|
467
|
-
getListeners: (type: string) => Array<
|
|
469
|
+
addEventListener: (type: string, listener: ol_events13.Listener) => void;
|
|
470
|
+
dispatchEvent: (event: ol_events_Event1.default | string) => boolean | undefined;
|
|
471
|
+
getListeners: (type: string) => Array<ol_events13.Listener> | undefined;
|
|
468
472
|
hasListener: (type?: string) => boolean;
|
|
469
|
-
removeEventListener: (type: string, listener:
|
|
473
|
+
removeEventListener: (type: string, listener: ol_events13.Listener) => void;
|
|
470
474
|
dispose: () => void;
|
|
471
475
|
}[]>;
|
|
472
476
|
coordinates: vue20.ComputedRef<Coordinate[][]>;
|
|
@@ -495,17 +499,17 @@ declare function useDrawPolygon(olMap: OLMap, options: DrawPolygonOptions): {
|
|
|
495
499
|
setFeatures: (coordinates?: Coordinate[][][]) => void;
|
|
496
500
|
reset: () => void;
|
|
497
501
|
features: vue20.Ref<{
|
|
498
|
-
on:
|
|
499
|
-
once:
|
|
500
|
-
un:
|
|
502
|
+
on: ol_Feature5.FeatureOnSignature<ol_events13.EventsKey>;
|
|
503
|
+
once: ol_Feature5.FeatureOnSignature<ol_events13.EventsKey>;
|
|
504
|
+
un: ol_Feature5.FeatureOnSignature<void>;
|
|
501
505
|
clone: () => Feature<Polygon>;
|
|
502
506
|
getGeometry: () => Polygon | undefined;
|
|
503
507
|
getId: () => number | string | undefined;
|
|
504
508
|
getGeometryName: () => string;
|
|
505
|
-
getStyle: () =>
|
|
506
|
-
getStyleFunction: () =>
|
|
509
|
+
getStyle: () => ol_style_Style5.StyleLike | undefined;
|
|
510
|
+
getStyleFunction: () => ol_style_Style5.StyleFunction | undefined;
|
|
507
511
|
setGeometry: (geometry: Polygon | undefined) => void;
|
|
508
|
-
setStyle: (style?:
|
|
512
|
+
setStyle: (style?: ol_style_Style5.StyleLike) => void;
|
|
509
513
|
setId: (id: number | string | undefined) => void;
|
|
510
514
|
setGeometryName: (name: string) => void;
|
|
511
515
|
get: (key: string) => any;
|
|
@@ -518,8 +522,8 @@ declare function useDrawPolygon(olMap: OLMap, options: DrawPolygonOptions): {
|
|
|
518
522
|
} | null;
|
|
519
523
|
hasProperties: () => boolean;
|
|
520
524
|
notify: (key: string, oldValue: any) => void;
|
|
521
|
-
addChangeListener: (key: string, listener:
|
|
522
|
-
removeChangeListener: (key: string, listener:
|
|
525
|
+
addChangeListener: (key: string, listener: ol_events13.Listener) => void;
|
|
526
|
+
removeChangeListener: (key: string, listener: ol_events13.Listener) => void;
|
|
523
527
|
set: (key: string, value: any, silent?: boolean) => void;
|
|
524
528
|
setProperties: (values: {
|
|
525
529
|
[x: string]: any;
|
|
@@ -527,24 +531,24 @@ declare function useDrawPolygon(olMap: OLMap, options: DrawPolygonOptions): {
|
|
|
527
531
|
unset: (key: string, silent?: boolean) => void;
|
|
528
532
|
changed: () => void;
|
|
529
533
|
getRevision: () => number;
|
|
530
|
-
addEventListener: (type: string, listener:
|
|
531
|
-
dispatchEvent: (event:
|
|
532
|
-
getListeners: (type: string) => Array<
|
|
534
|
+
addEventListener: (type: string, listener: ol_events13.Listener) => void;
|
|
535
|
+
dispatchEvent: (event: ol_events_Event1.default | string) => boolean | undefined;
|
|
536
|
+
getListeners: (type: string) => Array<ol_events13.Listener> | undefined;
|
|
533
537
|
hasListener: (type?: string) => boolean;
|
|
534
|
-
removeEventListener: (type: string, listener:
|
|
538
|
+
removeEventListener: (type: string, listener: ol_events13.Listener) => void;
|
|
535
539
|
dispose: () => void;
|
|
536
540
|
}[], Feature<Polygon>[] | {
|
|
537
|
-
on:
|
|
538
|
-
once:
|
|
539
|
-
un:
|
|
541
|
+
on: ol_Feature5.FeatureOnSignature<ol_events13.EventsKey>;
|
|
542
|
+
once: ol_Feature5.FeatureOnSignature<ol_events13.EventsKey>;
|
|
543
|
+
un: ol_Feature5.FeatureOnSignature<void>;
|
|
540
544
|
clone: () => Feature<Polygon>;
|
|
541
545
|
getGeometry: () => Polygon | undefined;
|
|
542
546
|
getId: () => number | string | undefined;
|
|
543
547
|
getGeometryName: () => string;
|
|
544
|
-
getStyle: () =>
|
|
545
|
-
getStyleFunction: () =>
|
|
548
|
+
getStyle: () => ol_style_Style5.StyleLike | undefined;
|
|
549
|
+
getStyleFunction: () => ol_style_Style5.StyleFunction | undefined;
|
|
546
550
|
setGeometry: (geometry: Polygon | undefined) => void;
|
|
547
|
-
setStyle: (style?:
|
|
551
|
+
setStyle: (style?: ol_style_Style5.StyleLike) => void;
|
|
548
552
|
setId: (id: number | string | undefined) => void;
|
|
549
553
|
setGeometryName: (name: string) => void;
|
|
550
554
|
get: (key: string) => any;
|
|
@@ -557,8 +561,8 @@ declare function useDrawPolygon(olMap: OLMap, options: DrawPolygonOptions): {
|
|
|
557
561
|
} | null;
|
|
558
562
|
hasProperties: () => boolean;
|
|
559
563
|
notify: (key: string, oldValue: any) => void;
|
|
560
|
-
addChangeListener: (key: string, listener:
|
|
561
|
-
removeChangeListener: (key: string, listener:
|
|
564
|
+
addChangeListener: (key: string, listener: ol_events13.Listener) => void;
|
|
565
|
+
removeChangeListener: (key: string, listener: ol_events13.Listener) => void;
|
|
562
566
|
set: (key: string, value: any, silent?: boolean) => void;
|
|
563
567
|
setProperties: (values: {
|
|
564
568
|
[x: string]: any;
|
|
@@ -566,11 +570,11 @@ declare function useDrawPolygon(olMap: OLMap, options: DrawPolygonOptions): {
|
|
|
566
570
|
unset: (key: string, silent?: boolean) => void;
|
|
567
571
|
changed: () => void;
|
|
568
572
|
getRevision: () => number;
|
|
569
|
-
addEventListener: (type: string, listener:
|
|
570
|
-
dispatchEvent: (event:
|
|
571
|
-
getListeners: (type: string) => Array<
|
|
573
|
+
addEventListener: (type: string, listener: ol_events13.Listener) => void;
|
|
574
|
+
dispatchEvent: (event: ol_events_Event1.default | string) => boolean | undefined;
|
|
575
|
+
getListeners: (type: string) => Array<ol_events13.Listener> | undefined;
|
|
572
576
|
hasListener: (type?: string) => boolean;
|
|
573
|
-
removeEventListener: (type: string, listener:
|
|
577
|
+
removeEventListener: (type: string, listener: ol_events13.Listener) => void;
|
|
574
578
|
dispose: () => void;
|
|
575
579
|
}[]>;
|
|
576
580
|
coordinates: vue20.ComputedRef<Coordinate[][][]>;
|
|
@@ -595,6 +599,52 @@ declare function useGraticule(options: UseGraticuleOptions): {
|
|
|
595
599
|
};
|
|
596
600
|
type UseGraticuleReturn = ReturnType<typeof useGraticule>;
|
|
597
601
|
//#endregion
|
|
602
|
+
//#region composables/useMapClick/index.d.ts
|
|
603
|
+
/** 点击事件类型 */
|
|
604
|
+
type ClickEventType = 'click' | 'dblclick' | 'singleclick';
|
|
605
|
+
/**
|
|
606
|
+
* 点击事件处理的上下文参数
|
|
607
|
+
*/
|
|
608
|
+
interface ClickContext {
|
|
609
|
+
map: OLMap;
|
|
610
|
+
coordinate: Coordinate;
|
|
611
|
+
pixel: Pixel;
|
|
612
|
+
feature?: FeatureLike;
|
|
613
|
+
layer: LayerLike;
|
|
614
|
+
}
|
|
615
|
+
/**
|
|
616
|
+
* 点击配置
|
|
617
|
+
*/
|
|
618
|
+
type ClickConfig<T extends Option> = {
|
|
619
|
+
/** Hit-detection 容差(css像素) */
|
|
620
|
+
hitTolerance?: number;
|
|
621
|
+
/** 优先级,数字越大越优先 */
|
|
622
|
+
priority?: number;
|
|
623
|
+
/** 是否处理这个点击 */
|
|
624
|
+
visible?: (context: ClickContext) => boolean | undefined | void;
|
|
625
|
+
/** 点击回调 */
|
|
626
|
+
handler: (context: ClickContext) => void;
|
|
627
|
+
} & T;
|
|
628
|
+
type ClickConfigList<T extends Option> = ClickConfig<T>[];
|
|
629
|
+
interface UseClickHandlerOptions<T extends Option = Option> {
|
|
630
|
+
/** 地图实例 */
|
|
631
|
+
mapRef: MaybeRefOrGetter<OLMap | undefined>;
|
|
632
|
+
/** 提示配置列表 */
|
|
633
|
+
items: MaybeRefOrGetter<ClickConfigList<T>>;
|
|
634
|
+
/** 事件类型 */
|
|
635
|
+
type: ClickEventType;
|
|
636
|
+
}
|
|
637
|
+
/**
|
|
638
|
+
* 通用的点击处理 Hook
|
|
639
|
+
*/
|
|
640
|
+
declare function useMapClickHandler<T extends Option = Option>(options: UseClickHandlerOptions<T>): void;
|
|
641
|
+
type UseMapClickHandlerReturn = ReturnType<typeof useMapClickHandler>;
|
|
642
|
+
declare function useMapClick<T extends Option = Option>(mapRef: MaybeRefOrGetter<OLMap | undefined>, type: ClickEventType): {
|
|
643
|
+
add: (key: string, items: ClickConfigList<T>) => void;
|
|
644
|
+
remove: (key: string) => void;
|
|
645
|
+
};
|
|
646
|
+
type UseMapClickReturn = ReturnType<typeof useMapClick>;
|
|
647
|
+
//#endregion
|
|
598
648
|
//#region composables/usePointermove/index.d.ts
|
|
599
649
|
interface PointermovePosition {
|
|
600
650
|
x: number;
|
|
@@ -605,7 +655,7 @@ interface PointermoveContentParams {
|
|
|
605
655
|
coordinate: Coordinate;
|
|
606
656
|
position: PointermovePosition;
|
|
607
657
|
feature: FeatureLike;
|
|
608
|
-
layer
|
|
658
|
+
layer: LayerLike;
|
|
609
659
|
}
|
|
610
660
|
type Cursor = CSSProperties['cursor'];
|
|
611
661
|
type PointermoveItem<T extends Option = Option> = {
|
|
@@ -624,11 +674,10 @@ type PointermoveItem<T extends Option = Option> = {
|
|
|
624
674
|
cursor?: Cursor | ((params: PointermoveContentParams) => Cursor);
|
|
625
675
|
/** 固定在feature center 默认启用,若要关闭需要同时开启强制更新 */
|
|
626
676
|
fixedFeatureCenter?: boolean;
|
|
677
|
+
/** Hit-detection 容差(css像素),用于扩大检测范围 */
|
|
678
|
+
hitTolerance?: number;
|
|
627
679
|
} & T;
|
|
628
680
|
type PointermoveList<T extends Option = Option> = PointermoveItem<T>[];
|
|
629
|
-
interface Option {
|
|
630
|
-
[key: string]: any;
|
|
631
|
-
}
|
|
632
681
|
interface UsePointermoveOptions<T extends Option = Option> {
|
|
633
682
|
/** 地图实例 */
|
|
634
683
|
mapRef: MaybeRefOrGetter<OLMap | undefined>;
|
|
@@ -677,4 +726,4 @@ declare function useSwitchBaseLayer(data: {
|
|
|
677
726
|
visibleLayerName: vue20.Ref<string, string>;
|
|
678
727
|
};
|
|
679
728
|
//#endregion
|
|
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,
|
|
729
|
+
export { BingMapsSourceOptions, CanvasLayerOptions, CircleOptions, ClickConfig, ClickConfigList, ClickContext, ClickEventType, 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, PMTilesLayerOptions, PointermoveItem, PointermoveList, PointermovePosition, ProjectionLike, StrokeOptions, StyleOptions, T_MAP_TYPE, TextOptions, TileLayerOptions, UseClickHandlerOptions, UseContextmenuFn, UseContextmenuParams, UseContextmenuReturn, UseGraticuleOptions, UseGraticuleReturn, UseMapClickHandlerReturn, UseMapClickReturn, 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, useMapClick, useMapClickHandler, useOlMap, usePointermove, useSwitchBaseLayer };
|