@summeruse/ol 0.4.0 → 0.4.2
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 +13 -0
- package/dist/index.d.ts +65 -71
- package/dist/index.iife.min.js +2 -2
- package/dist/index.js +8560 -8562
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @summeruse/ol
|
|
2
2
|
|
|
3
|
+
## 0.4.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 054bfbf: 修复 xyz,pmtiles 图层坐标系未导入
|
|
8
|
+
|
|
9
|
+
## 0.4.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 6833ec1: refactor(projection): 统一使用 EPSG 代码命名坐标转换函数
|
|
14
|
+
- 33fb1b2: refactor(projection): 将投影相关代码移动到 utils 目录并优化初始化逻辑
|
|
15
|
+
|
|
3
16
|
## 0.4.0
|
|
4
17
|
|
|
5
18
|
### Minor Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -6,7 +6,6 @@ import { Extent } from "ol/extent";
|
|
|
6
6
|
import { Circle, Geometry, LineString, MultiLineString, MultiPoint, MultiPolygon, Point, Polygon } from "ol/geom";
|
|
7
7
|
import VectorLayer from "ol/layer/Vector";
|
|
8
8
|
import VectorSource from "ol/source/Vector";
|
|
9
|
-
import * as ol_tilegrid0 from "ol/tilegrid";
|
|
10
9
|
import { Circle as Circle$1, Fill, Icon, Stroke, Style, Text } from "ol/style";
|
|
11
10
|
import { Graticule, Layer, Tile } from "ol/layer";
|
|
12
11
|
import WebGLVectorLayer from "ol/layer/WebGLVector";
|
|
@@ -14,17 +13,19 @@ import * as ol_source0 from "ol/source";
|
|
|
14
13
|
import { BingMaps, OSM, Source, XYZ } from "ol/source";
|
|
15
14
|
import ImageTileSource from "ol/source/ImageTile";
|
|
16
15
|
import { Projection } from "ol/proj";
|
|
16
|
+
import * as ol_tilegrid0 from "ol/tilegrid";
|
|
17
17
|
import * as ol_coordinate0 from "ol/coordinate";
|
|
18
18
|
import { Coordinate } from "ol/coordinate";
|
|
19
19
|
import { ObjectEvent } from "ol/Object";
|
|
20
|
-
import * as
|
|
20
|
+
import * as ol_Feature0 from "ol/Feature";
|
|
21
21
|
import { FeatureLike } from "ol/Feature";
|
|
22
|
-
import * as
|
|
23
|
-
import * as
|
|
24
|
-
import * as
|
|
22
|
+
import * as ol_events0 from "ol/events";
|
|
23
|
+
import * as ol_style_Style0 from "ol/style/Style";
|
|
24
|
+
import * as ol_events_Event0 from "ol/events/Event";
|
|
25
25
|
import * as ol_renderer_Layer0 from "ol/renderer/Layer";
|
|
26
26
|
import { FrameState } from "ol/Map";
|
|
27
27
|
import { FlatStyleLike } from "ol/style/flat";
|
|
28
|
+
import proj4 from "proj4";
|
|
28
29
|
import TileLayer from "ol/layer/Tile";
|
|
29
30
|
|
|
30
31
|
//#region constants/projection.d.ts
|
|
@@ -35,7 +36,6 @@ declare const EPSG_4326 = "EPSG:4326";
|
|
|
35
36
|
/** 3395坐标系 椭球墨卡托投影坐标系 */
|
|
36
37
|
declare const EPSG_3395 = "EPSG:3395";
|
|
37
38
|
type ProjectionLike = 'EPSG:3857' | 'EPSG:4326' | 'EPSG:3395';
|
|
38
|
-
declare function createTileGrid(ProjectionLike?: Projection | string): ol_tilegrid0.TileGrid | undefined;
|
|
39
39
|
//#endregion
|
|
40
40
|
//#region components/ol-map/props.d.ts
|
|
41
41
|
interface OlMapProps {
|
|
@@ -334,22 +334,16 @@ declare function createCanvasLayer(olMap: OLMap, refresh: (frameState: FrameStat
|
|
|
334
334
|
};
|
|
335
335
|
//#endregion
|
|
336
336
|
//#region utils/projection/index.d.ts
|
|
337
|
-
/**
|
|
338
|
-
declare function
|
|
339
|
-
/**
|
|
340
|
-
declare
|
|
341
|
-
/**
|
|
342
|
-
declare function
|
|
343
|
-
/**
|
|
344
|
-
declare
|
|
345
|
-
|
|
346
|
-
declare function
|
|
347
|
-
/** WGS84范围转墨卡托 */
|
|
348
|
-
declare const EPSG_4326ExtentToEPSG_3857: typeof wgs84ExtentToMercator;
|
|
349
|
-
/** 墨卡托范围转WGS84 */
|
|
350
|
-
declare function mercatorExtentToWgs84(extent: Extent): Extent;
|
|
351
|
-
/** 墨卡托范围转WGS84 */
|
|
352
|
-
declare const EPSG_3857ExtentToEPSG_4326: typeof mercatorExtentToWgs84;
|
|
337
|
+
/** EPSG_4326转EPSG_3857 */
|
|
338
|
+
declare function EPSG_4326ToEPSG_3857(coordinate: Coordinate): Coordinate;
|
|
339
|
+
/** EPSG_3857转EPSG_4326 */
|
|
340
|
+
declare function EPSG_3857ToEPSG_4326(coordinate: Coordinate): Coordinate;
|
|
341
|
+
/** EPSG_4326范围转EPSG_3857 */
|
|
342
|
+
declare function EPSG_4326ExtentToEPSG_3857(extent: Extent): Extent;
|
|
343
|
+
/** EPSG_3857范围转EPSG_4326 */
|
|
344
|
+
declare function EPSG_3857ExtentToEPSG_4326(extent: Extent): Extent;
|
|
345
|
+
declare function registerEPSG_3395(): void;
|
|
346
|
+
declare function createTileGrid(ProjectionLike?: Projection | string): ol_tilegrid0.TileGrid | undefined;
|
|
353
347
|
//#endregion
|
|
354
348
|
//#region composables/useDrawLineString/index.d.ts
|
|
355
349
|
interface DrawLineStringOptions {
|
|
@@ -373,17 +367,17 @@ declare function useDrawLineString(olMap: OLMap, options: DrawLineStringOptions)
|
|
|
373
367
|
setFeatures: (coordinates: Coordinate[][]) => void;
|
|
374
368
|
reset: () => void;
|
|
375
369
|
features: vue20.Ref<{
|
|
376
|
-
on:
|
|
377
|
-
once:
|
|
378
|
-
un:
|
|
370
|
+
on: ol_Feature0.FeatureOnSignature<ol_events0.EventsKey>;
|
|
371
|
+
once: ol_Feature0.FeatureOnSignature<ol_events0.EventsKey>;
|
|
372
|
+
un: ol_Feature0.FeatureOnSignature<void>;
|
|
379
373
|
clone: () => Feature<LineString>;
|
|
380
374
|
getGeometry: () => LineString | undefined;
|
|
381
375
|
getId: () => number | string | undefined;
|
|
382
376
|
getGeometryName: () => string;
|
|
383
|
-
getStyle: () =>
|
|
384
|
-
getStyleFunction: () =>
|
|
377
|
+
getStyle: () => ol_style_Style0.StyleLike | undefined;
|
|
378
|
+
getStyleFunction: () => ol_style_Style0.StyleFunction | undefined;
|
|
385
379
|
setGeometry: (geometry: LineString | undefined) => void;
|
|
386
|
-
setStyle: (style?:
|
|
380
|
+
setStyle: (style?: ol_style_Style0.StyleLike) => void;
|
|
387
381
|
setId: (id: number | string | undefined) => void;
|
|
388
382
|
setGeometryName: (name: string) => void;
|
|
389
383
|
get: (key: string) => any;
|
|
@@ -396,8 +390,8 @@ declare function useDrawLineString(olMap: OLMap, options: DrawLineStringOptions)
|
|
|
396
390
|
} | null;
|
|
397
391
|
hasProperties: () => boolean;
|
|
398
392
|
notify: (key: string, oldValue: any) => void;
|
|
399
|
-
addChangeListener: (key: string, listener:
|
|
400
|
-
removeChangeListener: (key: string, listener:
|
|
393
|
+
addChangeListener: (key: string, listener: ol_events0.Listener) => void;
|
|
394
|
+
removeChangeListener: (key: string, listener: ol_events0.Listener) => void;
|
|
401
395
|
set: (key: string, value: any, silent?: boolean) => void;
|
|
402
396
|
setProperties: (values: {
|
|
403
397
|
[x: string]: any;
|
|
@@ -405,24 +399,24 @@ declare function useDrawLineString(olMap: OLMap, options: DrawLineStringOptions)
|
|
|
405
399
|
unset: (key: string, silent?: boolean) => void;
|
|
406
400
|
changed: () => void;
|
|
407
401
|
getRevision: () => number;
|
|
408
|
-
addEventListener: (type: string, listener:
|
|
409
|
-
dispatchEvent: (event:
|
|
410
|
-
getListeners: (type: string) => Array<
|
|
402
|
+
addEventListener: (type: string, listener: ol_events0.Listener) => void;
|
|
403
|
+
dispatchEvent: (event: ol_events_Event0.default | string) => boolean | undefined;
|
|
404
|
+
getListeners: (type: string) => Array<ol_events0.Listener> | undefined;
|
|
411
405
|
hasListener: (type?: string) => boolean;
|
|
412
|
-
removeEventListener: (type: string, listener:
|
|
406
|
+
removeEventListener: (type: string, listener: ol_events0.Listener) => void;
|
|
413
407
|
dispose: () => void;
|
|
414
408
|
}[], Feature<LineString>[] | {
|
|
415
|
-
on:
|
|
416
|
-
once:
|
|
417
|
-
un:
|
|
409
|
+
on: ol_Feature0.FeatureOnSignature<ol_events0.EventsKey>;
|
|
410
|
+
once: ol_Feature0.FeatureOnSignature<ol_events0.EventsKey>;
|
|
411
|
+
un: ol_Feature0.FeatureOnSignature<void>;
|
|
418
412
|
clone: () => Feature<LineString>;
|
|
419
413
|
getGeometry: () => LineString | undefined;
|
|
420
414
|
getId: () => number | string | undefined;
|
|
421
415
|
getGeometryName: () => string;
|
|
422
|
-
getStyle: () =>
|
|
423
|
-
getStyleFunction: () =>
|
|
416
|
+
getStyle: () => ol_style_Style0.StyleLike | undefined;
|
|
417
|
+
getStyleFunction: () => ol_style_Style0.StyleFunction | undefined;
|
|
424
418
|
setGeometry: (geometry: LineString | undefined) => void;
|
|
425
|
-
setStyle: (style?:
|
|
419
|
+
setStyle: (style?: ol_style_Style0.StyleLike) => void;
|
|
426
420
|
setId: (id: number | string | undefined) => void;
|
|
427
421
|
setGeometryName: (name: string) => void;
|
|
428
422
|
get: (key: string) => any;
|
|
@@ -435,8 +429,8 @@ declare function useDrawLineString(olMap: OLMap, options: DrawLineStringOptions)
|
|
|
435
429
|
} | null;
|
|
436
430
|
hasProperties: () => boolean;
|
|
437
431
|
notify: (key: string, oldValue: any) => void;
|
|
438
|
-
addChangeListener: (key: string, listener:
|
|
439
|
-
removeChangeListener: (key: string, listener:
|
|
432
|
+
addChangeListener: (key: string, listener: ol_events0.Listener) => void;
|
|
433
|
+
removeChangeListener: (key: string, listener: ol_events0.Listener) => void;
|
|
440
434
|
set: (key: string, value: any, silent?: boolean) => void;
|
|
441
435
|
setProperties: (values: {
|
|
442
436
|
[x: string]: any;
|
|
@@ -444,11 +438,11 @@ declare function useDrawLineString(olMap: OLMap, options: DrawLineStringOptions)
|
|
|
444
438
|
unset: (key: string, silent?: boolean) => void;
|
|
445
439
|
changed: () => void;
|
|
446
440
|
getRevision: () => number;
|
|
447
|
-
addEventListener: (type: string, listener:
|
|
448
|
-
dispatchEvent: (event:
|
|
449
|
-
getListeners: (type: string) => Array<
|
|
441
|
+
addEventListener: (type: string, listener: ol_events0.Listener) => void;
|
|
442
|
+
dispatchEvent: (event: ol_events_Event0.default | string) => boolean | undefined;
|
|
443
|
+
getListeners: (type: string) => Array<ol_events0.Listener> | undefined;
|
|
450
444
|
hasListener: (type?: string) => boolean;
|
|
451
|
-
removeEventListener: (type: string, listener:
|
|
445
|
+
removeEventListener: (type: string, listener: ol_events0.Listener) => void;
|
|
452
446
|
dispose: () => void;
|
|
453
447
|
}[]>;
|
|
454
448
|
coordinates: vue20.ComputedRef<Coordinate[][]>;
|
|
@@ -477,17 +471,17 @@ declare function useDrawPolygon(olMap: OLMap, options: DrawPolygonOptions): {
|
|
|
477
471
|
setFeatures: (coordinates?: Coordinate[][][]) => void;
|
|
478
472
|
reset: () => void;
|
|
479
473
|
features: vue20.Ref<{
|
|
480
|
-
on:
|
|
481
|
-
once:
|
|
482
|
-
un:
|
|
474
|
+
on: ol_Feature0.FeatureOnSignature<ol_events0.EventsKey>;
|
|
475
|
+
once: ol_Feature0.FeatureOnSignature<ol_events0.EventsKey>;
|
|
476
|
+
un: ol_Feature0.FeatureOnSignature<void>;
|
|
483
477
|
clone: () => Feature<Polygon>;
|
|
484
478
|
getGeometry: () => Polygon | undefined;
|
|
485
479
|
getId: () => number | string | undefined;
|
|
486
480
|
getGeometryName: () => string;
|
|
487
|
-
getStyle: () =>
|
|
488
|
-
getStyleFunction: () =>
|
|
481
|
+
getStyle: () => ol_style_Style0.StyleLike | undefined;
|
|
482
|
+
getStyleFunction: () => ol_style_Style0.StyleFunction | undefined;
|
|
489
483
|
setGeometry: (geometry: Polygon | undefined) => void;
|
|
490
|
-
setStyle: (style?:
|
|
484
|
+
setStyle: (style?: ol_style_Style0.StyleLike) => void;
|
|
491
485
|
setId: (id: number | string | undefined) => void;
|
|
492
486
|
setGeometryName: (name: string) => void;
|
|
493
487
|
get: (key: string) => any;
|
|
@@ -500,8 +494,8 @@ declare function useDrawPolygon(olMap: OLMap, options: DrawPolygonOptions): {
|
|
|
500
494
|
} | null;
|
|
501
495
|
hasProperties: () => boolean;
|
|
502
496
|
notify: (key: string, oldValue: any) => void;
|
|
503
|
-
addChangeListener: (key: string, listener:
|
|
504
|
-
removeChangeListener: (key: string, listener:
|
|
497
|
+
addChangeListener: (key: string, listener: ol_events0.Listener) => void;
|
|
498
|
+
removeChangeListener: (key: string, listener: ol_events0.Listener) => void;
|
|
505
499
|
set: (key: string, value: any, silent?: boolean) => void;
|
|
506
500
|
setProperties: (values: {
|
|
507
501
|
[x: string]: any;
|
|
@@ -509,24 +503,24 @@ declare function useDrawPolygon(olMap: OLMap, options: DrawPolygonOptions): {
|
|
|
509
503
|
unset: (key: string, silent?: boolean) => void;
|
|
510
504
|
changed: () => void;
|
|
511
505
|
getRevision: () => number;
|
|
512
|
-
addEventListener: (type: string, listener:
|
|
513
|
-
dispatchEvent: (event:
|
|
514
|
-
getListeners: (type: string) => Array<
|
|
506
|
+
addEventListener: (type: string, listener: ol_events0.Listener) => void;
|
|
507
|
+
dispatchEvent: (event: ol_events_Event0.default | string) => boolean | undefined;
|
|
508
|
+
getListeners: (type: string) => Array<ol_events0.Listener> | undefined;
|
|
515
509
|
hasListener: (type?: string) => boolean;
|
|
516
|
-
removeEventListener: (type: string, listener:
|
|
510
|
+
removeEventListener: (type: string, listener: ol_events0.Listener) => void;
|
|
517
511
|
dispose: () => void;
|
|
518
512
|
}[], Feature<Polygon>[] | {
|
|
519
|
-
on:
|
|
520
|
-
once:
|
|
521
|
-
un:
|
|
513
|
+
on: ol_Feature0.FeatureOnSignature<ol_events0.EventsKey>;
|
|
514
|
+
once: ol_Feature0.FeatureOnSignature<ol_events0.EventsKey>;
|
|
515
|
+
un: ol_Feature0.FeatureOnSignature<void>;
|
|
522
516
|
clone: () => Feature<Polygon>;
|
|
523
517
|
getGeometry: () => Polygon | undefined;
|
|
524
518
|
getId: () => number | string | undefined;
|
|
525
519
|
getGeometryName: () => string;
|
|
526
|
-
getStyle: () =>
|
|
527
|
-
getStyleFunction: () =>
|
|
520
|
+
getStyle: () => ol_style_Style0.StyleLike | undefined;
|
|
521
|
+
getStyleFunction: () => ol_style_Style0.StyleFunction | undefined;
|
|
528
522
|
setGeometry: (geometry: Polygon | undefined) => void;
|
|
529
|
-
setStyle: (style?:
|
|
523
|
+
setStyle: (style?: ol_style_Style0.StyleLike) => void;
|
|
530
524
|
setId: (id: number | string | undefined) => void;
|
|
531
525
|
setGeometryName: (name: string) => void;
|
|
532
526
|
get: (key: string) => any;
|
|
@@ -539,8 +533,8 @@ declare function useDrawPolygon(olMap: OLMap, options: DrawPolygonOptions): {
|
|
|
539
533
|
} | null;
|
|
540
534
|
hasProperties: () => boolean;
|
|
541
535
|
notify: (key: string, oldValue: any) => void;
|
|
542
|
-
addChangeListener: (key: string, listener:
|
|
543
|
-
removeChangeListener: (key: string, listener:
|
|
536
|
+
addChangeListener: (key: string, listener: ol_events0.Listener) => void;
|
|
537
|
+
removeChangeListener: (key: string, listener: ol_events0.Listener) => void;
|
|
544
538
|
set: (key: string, value: any, silent?: boolean) => void;
|
|
545
539
|
setProperties: (values: {
|
|
546
540
|
[x: string]: any;
|
|
@@ -548,11 +542,11 @@ declare function useDrawPolygon(olMap: OLMap, options: DrawPolygonOptions): {
|
|
|
548
542
|
unset: (key: string, silent?: boolean) => void;
|
|
549
543
|
changed: () => void;
|
|
550
544
|
getRevision: () => number;
|
|
551
|
-
addEventListener: (type: string, listener:
|
|
552
|
-
dispatchEvent: (event:
|
|
553
|
-
getListeners: (type: string) => Array<
|
|
545
|
+
addEventListener: (type: string, listener: ol_events0.Listener) => void;
|
|
546
|
+
dispatchEvent: (event: ol_events_Event0.default | string) => boolean | undefined;
|
|
547
|
+
getListeners: (type: string) => Array<ol_events0.Listener> | undefined;
|
|
554
548
|
hasListener: (type?: string) => boolean;
|
|
555
|
-
removeEventListener: (type: string, listener:
|
|
549
|
+
removeEventListener: (type: string, listener: ol_events0.Listener) => void;
|
|
556
550
|
dispose: () => void;
|
|
557
551
|
}[]>;
|
|
558
552
|
coordinates: vue20.ComputedRef<Coordinate[][][]>;
|
|
@@ -662,4 +656,4 @@ declare function useSwitchBaseLayer(data: {
|
|
|
662
656
|
//#region constants/distance.d.ts
|
|
663
657
|
declare const ONE_NM = 1852;
|
|
664
658
|
//#endregion
|
|
665
|
-
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, 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, 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,
|
|
659
|
+
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, 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, 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 };
|