@mapgis/webclient-leaflet-plugin 17.4.1 → 17.6.0
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/README.md +93 -41
- package/dist/es5/webclient-common.min.js +32 -6
- package/dist/es5/webclient-leaflet-plugin.min.js +6 -6
- package/dist/webclient-leaflet-plugin-es6.min.js +6 -11
- package/documention/ArcGISMapImageLayer.html +50 -4
- package/documention/ArcGISTileLayer.html +42 -4
- package/documention/EchartsLayer.html +3 -3
- package/documention/FeatureLayer.html +2 -2
- package/documention/FeatureLayerUtil.html +3 -3
- package/documention/IGSImageryLayer.html +851 -0
- package/documention/IGSImageryTileLayer.html +741 -0
- package/documention/IGSMapImageLayer.html +54 -31
- package/documention/IGSTileLayer.html +103 -25
- package/documention/L.zondy.MapvBaseLayer.html +6 -2
- package/documention/MapLayer.html +30 -2
- package/documention/MapVLayer.html +3 -3
- package/documention/MapView.html +153 -91
- package/documention/MapViewLeaflet.html +1413 -369
- package/documention/Popup.html +3 -3
- package/documention/Screenshot.html +2 -2
- package/documention/SketchEditor.html +12 -12
- package/documention/SketchEditorLeaflet.html +477 -241
- package/documention/TileLayer.html +132 -2
- package/documention/TileLayerWMS.html +2 -2
- package/documention/VectorTileLayer.html +46 -4
- package/documention/WMSLayerView.html +2 -2
- package/documention/WebMapServiceLayer.html +48 -4
- package/documention/WebMapTileServiceLayer.html +38 -20
- package/documention/WebTileLayer.html +42 -4
- package/documention/global.html +508 -1868
- package/documention/index.html +2 -2
- package/documention/initializeOptions.html +384 -0
- package/documention/{Zondy.ThemeLayer.GeoFeatureThemeLayer.html → zondy.themelayer.GeoFeatureThemeLayer.html} +6 -2
- package/documention/{Zondy.ThemeLayer.GraphThemeLayer.html → zondy.themelayer.GraphThemeLayer.html} +2 -2
- package/documention/{Zondy.ThemeLayer.RandomThemeLayer.html → zondy.themelayer.RandomThemeLayer.html} +2 -2
- package/documention/{Zondy.ThemeLayer.ThemeLayer.html → zondy.themelayer.ThemeLayer.html} +6 -2
- package/documention/{Zondy.ThemeLayer.ThemeStyle.html → zondy.themelayer.ThemeStyle.html} +6 -2
- package/documention/{Zondy.ThemeLayer.rangeThemeLayer.html → zondy.themelayer.rangeThemeLayer.html} +2 -2
- package/documention/{Zondy.ThemeLayer.rankSymbolThemeLayer.html → zondy.themelayer.rankSymbolThemeLayer.html} +2 -2
- package/documention/{Zondy.ThemeLayer.simpleThemeLayer.html → zondy.themelayer.simpleThemeLayer.html} +2 -2
- package/documention/{Zondy.ThemeLayer.uniqueThemeLayer.html → zondy.themelayer.uniqueThemeLayer.html} +2 -2
- package/documention/{Zondy.view.UI.html → zondy.view.UI.html} +7 -3
- package/documention/{Zondy.Widget.html → zondy.widget.html} +3 -3
- package/package.json +7 -8
- package/documention/DrawControl.html +0 -802
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mapgis/webclient-leaflet-plugin",
|
|
3
|
-
"version" : "17.
|
|
3
|
+
"version" : "17.6.0",
|
|
4
4
|
"description": "A cloud GIS network client development platform based on Leaflet.",
|
|
5
5
|
"main": "dist/webclient-leaflet-plugin-es6.min.js",
|
|
6
6
|
"scripts": {},
|
|
@@ -12,15 +12,14 @@
|
|
|
12
12
|
],
|
|
13
13
|
"author": "Wuhan Zondy Cyber Science&Technology Co.Ltd.",
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@mapgis/
|
|
16
|
-
"@mapgis/
|
|
17
|
-
"@mapgis/leaflet-easyprint": "^17.4.0",
|
|
18
|
-
"@mapgis/mapbox-gl": "^17.4.0",
|
|
19
|
-
"@mapgis/webclient-common": "^17.4.0",
|
|
15
|
+
"@mapgis/webclient-graphic-render": "^17.6.0",
|
|
16
|
+
"@mapgis/leaflet-easyprint": "^17.6.0",
|
|
20
17
|
"dom-to-image": "^2.5.2",
|
|
21
18
|
"file-saver": "^1.3.3",
|
|
22
|
-
"svg-pathdata": "^6.0.0"
|
|
19
|
+
"svg-pathdata": "^6.0.0",
|
|
20
|
+
"leaflet": "^1.9.2",
|
|
21
|
+
"@mapgis/webclient-common": "^17.6.0",
|
|
22
|
+
"@mapgis/mapbox-gl": "^17.6.0"
|
|
23
23
|
},
|
|
24
|
-
"peerDependencies": {},
|
|
25
24
|
"devDependencies": {}
|
|
26
25
|
}
|