v-openlayers 2.9.5 → 2.10.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/package/v-map/global.d.ts +208 -0
- package/package/v-map/ol/config.d.ts +5 -0
- package/package/v-map/ol/lib/business/OlHandler.d.ts +49 -0
- package/package/v-map/ol/lib/config/mapConfig-4326.d.ts +36 -0
- package/package/v-map/ol/lib/core/VMap.d.ts +556 -0
- package/package/v-map/ol/lib/core/plugins/DrawConditions.d.ts +64 -0
- package/package/v-map/ol/lib/core/plugins/DrawHandler.d.ts +306 -0
- package/package/v-map/ol/lib/core/plugins/FeatureHandler.d.ts +117 -0
- package/package/v-map/ol/lib/core/plugins/GeojsonHandler.d.ts +76 -0
- package/package/v-map/ol/lib/core/plugins/GeometryHandler.d.ts +117 -0
- package/package/v-map/ol/lib/core/plugins/InteractionHandler.d.ts +230 -0
- package/package/v-map/ol/lib/core/plugins/KrigingHandler.d.ts +18 -0
- package/package/v-map/ol/lib/core/plugins/LayerHandler.d.ts +386 -0
- package/package/v-map/ol/lib/core/plugins/MeasureHandler.d.ts +32 -0
- package/package/v-map/ol/lib/core/plugins/Simplify.d.ts +26 -0
- package/package/v-map/ol/lib/core/plugins/StyleHandler.d.ts +72 -0
- package/package/v-map/ol/lib/core/plugins/TransformHandler.d.ts +35 -0
- package/package/v-map/ol/lib/core/plugins/WMTSExplorer.d.ts +108 -0
- package/package/v-map/ol/lib/core/plugins/WfsHandler.d.ts +66 -0
- package/package/v-map/ol/lib/core/plugins/WktHandler.d.ts +62 -0
- package/package/v-map/ol/lib/core/plugins/WmsHandler.d.ts +32 -0
- package/package/v-map/ol/lib/core/plugins/baidu/BaiduMap.d.ts +3 -0
- package/package/v-map/ol/lib/core/plugins/baidu/bd09.d.ts +2 -0
- package/package/v-map/ol/lib/core/plugins/mapbox-streets-v6-style.d.ts +1 -0
- package/package/v-map/ol/types/types.d.ts +84 -0
- package/package/v-map/public/utils/advanced/GradientColor.d.ts +27 -0
- package/package/v-map/public/utils/base/color.d.ts +17 -0
- package/package/v-map/public/utils/base/common.d.ts +126 -0
- package/package/v-map/public/utils/base/date.d.ts +52 -0
- package/package/v-map/public/utils/base/index.d.ts +340 -0
- package/package/v-map/public/utils/base/number.d.ts +21 -0
- package/package/v-map/public/utils/base/string.d.ts +16 -0
- package/package/v-map/public/utils/base/transform.d.ts +12 -0
- package/package/v-map/public/utils/base/type.d.ts +88 -0
- package/package/v-map/public/utils/base/utils.d.ts +155 -0
- package/package/v-map/public/utils/base/validate.d.ts +54 -0
- package/package/v-map/public/utils/map/index.d.ts +15 -0
- package/package/v-map/public/utils/map/ol.d.ts +7 -0
- package/package/v-map/public/utils/map/transform.d.ts +1 -0
- package/package/v-map/public/utils/map/turf.d.ts +1 -0
- package/package/v-openlayers.css +1 -1
- package/package/v-openlayers.d.ts +35 -9578
- package/package/v-openlayers.mjs +31034 -82215
- package/package.json +3 -2
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "v-openlayers",
|
|
3
3
|
"description": "基于vue3+openlayers封装的组件库",
|
|
4
4
|
"author": "kangjinrui<1092014304@qq.com>",
|
|
5
|
-
"version": "2.
|
|
5
|
+
"version": "2.10.2",
|
|
6
6
|
"private": false,
|
|
7
7
|
"main": "package/v-openlayers.mjs",
|
|
8
8
|
"module": "package/v-openlayers.mjs",
|
|
@@ -10,7 +10,8 @@
|
|
|
10
10
|
"files": [
|
|
11
11
|
"v-openlayers.css",
|
|
12
12
|
"v-openlayers.mjs",
|
|
13
|
-
"v-openlayers.d.ts"
|
|
13
|
+
"v-openlayers.d.ts",
|
|
14
|
+
"package/v-map"
|
|
14
15
|
],
|
|
15
16
|
"keywords": [
|
|
16
17
|
"openlayers",
|