@mapgis/webclient-leaflet-plugin 17.0.7 → 17.2.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/README.md +11 -39
- package/dist/es5/webclient-common.min.js +15 -4
- package/dist/es5/webclient-leaflet-plugin.min.js +6 -6
- package/dist/webclient-leaflet-plugin-es6.min.js +8 -8
- package/documention/ArcGISMapImageLayer.html +820 -0
- package/documention/ArcGISTileLayer.html +498 -0
- package/documention/EchartsLayer.html +261 -0
- package/documention/FeatureLayer.html +212 -0
- package/documention/FeatureLayerUtil.html +288 -0
- package/documention/IGSMapImageLayer.html +948 -0
- package/documention/IGSTileLayer.html +562 -0
- package/documention/MapLayer.html +330 -0
- package/documention/MapVLayer.html +320 -0
- package/documention/MapViewLeaflet.html +7 -7
- package/documention/Popup.html +4 -2
- package/documention/Screenshot.html +5 -143
- package/documention/SketchEditorLeaflet.html +106 -47
- package/documention/TileLayer.html +279 -0
- package/documention/TileLayerWMS.html +222 -0
- package/documention/VectorTileLayer.html +529 -0
- package/documention/WMSLayerView.html +689 -0
- package/documention/WebMapServiceLayer.html +723 -0
- package/documention/WebMapTileServiceLayer.html +754 -0
- package/documention/WebTileLayer.html +663 -0
- package/documention/Zondy.ThemeLayer.GeoFeatureThemeLayer.html +22 -22
- package/documention/Zondy.ThemeLayer.GraphThemeLayer.html +30 -30
- package/documention/Zondy.ThemeLayer.RandomThemeLayer.html +34 -34
- package/documention/Zondy.ThemeLayer.ThemeLayer.html +3 -3
- package/documention/Zondy.ThemeLayer.rangeThemeLayer.html +34 -34
- package/documention/Zondy.ThemeLayer.rankSymbolThemeLayer.html +47 -47
- package/documention/Zondy.ThemeLayer.simpleThemeLayer.html +33 -33
- package/documention/Zondy.ThemeLayer.uniqueThemeLayer.html +30 -30
- package/documention/Zondy.Widget.html +5 -5
- package/documention/global.html +454 -0
- package/documention/index.html +6 -6
- package/documention/scripts/sideBar.js +16 -2
- package/package.json +6 -6
|
@@ -37,9 +37,9 @@
|
|
|
37
37
|
<div class="description">
|
|
38
38
|
<p>二维Leaflet引擎草图编辑类<br/>
|
|
39
39
|
<br>[ES5引入方式]:<br/>
|
|
40
|
-
const {
|
|
40
|
+
const { SketchEditor } = zondy.leaflet.tool.sketch <br/>
|
|
41
41
|
[ES6引入方式]:<br/>
|
|
42
|
-
import {
|
|
42
|
+
import { SketchEditor } from "@mapgis/webclient-leaflet-plugin" <br/></p>
|
|
43
43
|
</div>
|
|
44
44
|
|
|
45
45
|
|
|
@@ -317,9 +317,14 @@ import { SketchEditorLeaflet } from "@mapgis/webclient-leaflet-plugin"
|
|
|
317
317
|
|
|
318
318
|
|
|
319
319
|
<pre class="prettyprint"><code>// [ES5引入方式]:
|
|
320
|
-
const {
|
|
320
|
+
const { Color } = zondy
|
|
321
|
+
const { SketchDataType } = zondy.enum
|
|
322
|
+
const { SimpleMarkerSymbol } = zondy.symbol
|
|
323
|
+
const { SketchStyle } = zondy.tool.sketch
|
|
324
|
+
const { MapView } = zondy.leaflet
|
|
325
|
+
const { SketchEditor } = zondy.leaflet.tool.sketch
|
|
321
326
|
[ES6引入方式]:
|
|
322
|
-
import { MapView,
|
|
327
|
+
import { MapView, SketchEditor } from "@mapgis/webclient-leaflet-plugin" <br/>
|
|
323
328
|
import { SketchStyle, SimpleMarkerSymbol, Color, SketchDataType} from "@mapgis/webclient-common" <br/>
|
|
324
329
|
var map = new Map()
|
|
325
330
|
var mapView = new MapView({
|
|
@@ -335,14 +340,14 @@ var sketchStyle = new SketchStyle({
|
|
|
335
340
|
lineStyle: undefined,
|
|
336
341
|
fillStyle: undefined
|
|
337
342
|
})
|
|
338
|
-
var
|
|
343
|
+
var sketchEditor = new SketchEditor({
|
|
339
344
|
view: mapView,
|
|
340
345
|
layer: new GraphicsLayer(),
|
|
341
346
|
vertexStyle: vertexStyle
|
|
342
347
|
})
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
348
|
+
sketchEditor.start(SketchDataType.POINT) // 绘制点
|
|
349
|
+
sketchEditor.start(SketchDataType.POLYLINE) // 绘制线
|
|
350
|
+
sketchEditor.start(SketchDataType.POLYGON) // 绘制区
|
|
346
351
|
*</code></pre>
|
|
347
352
|
|
|
348
353
|
|
|
@@ -1212,7 +1217,9 @@ SketchEditorLeaflet.start(SketchDataType.POLYGON) // 绘制区
|
|
|
1212
1217
|
|
|
1213
1218
|
|
|
1214
1219
|
<pre class="prettyprint"><code>// [ES5引入方式]:
|
|
1215
|
-
const {
|
|
1220
|
+
const { Polygon, LineString } = zondy.geometry
|
|
1221
|
+
const { MapView } = zondy.leaflet
|
|
1222
|
+
const { SketchEditor } = zondy.leaflet.tool.sketch
|
|
1216
1223
|
[ES6引入方式]:
|
|
1217
1224
|
import { MapView, SketchEditorLeaflet } from "@mapgis/webclient-leaflet-plugin" <br/>
|
|
1218
1225
|
import { Polygon, LineString } from "@mapgis/webclient-common" <br/>
|
|
@@ -1273,11 +1280,11 @@ var testLayer = new GraphicsLayer({
|
|
|
1273
1280
|
graphics: this.testFeatures
|
|
1274
1281
|
})
|
|
1275
1282
|
map.add(testLayer)
|
|
1276
|
-
var
|
|
1283
|
+
var sketchEditor = new SketchEditor({
|
|
1277
1284
|
view: mapView,
|
|
1278
1285
|
layer: new GraphicsLayer()
|
|
1279
1286
|
})
|
|
1280
|
-
|
|
1287
|
+
sketchEditor.drawPolylineToPolygon(testGeometries)</code></pre>
|
|
1281
1288
|
|
|
1282
1289
|
|
|
1283
1290
|
|
|
@@ -1644,22 +1651,25 @@ sketchEditorLeaflet.drawPolylineToPolygon(testGeometries)</code></pre>
|
|
|
1644
1651
|
|
|
1645
1652
|
|
|
1646
1653
|
<pre class="prettyprint"><code>// [ES5引入方式]:
|
|
1647
|
-
const {
|
|
1654
|
+
const { Polygon, LineString } = zondy.geometry
|
|
1655
|
+
const { SketchDataType } = zondy.enum
|
|
1656
|
+
const { MapView } = zondy.leaflet
|
|
1657
|
+
const { SketchEditor } = zondy.leaflet.tool.sketch
|
|
1648
1658
|
[ES6引入方式]:
|
|
1649
|
-
import { MapView,
|
|
1650
|
-
import { Polygon, LineString } from "@mapgis/webclient-common" <br/>
|
|
1659
|
+
import { MapView, SketchEditor } from "@mapgis/webclient-leaflet-plugin" <br/>
|
|
1660
|
+
import { Polygon, LineString, SketchDataType } from "@mapgis/webclient-common" <br/>
|
|
1651
1661
|
var map = new Map()
|
|
1652
1662
|
var mapView = new MapView({
|
|
1653
1663
|
viewId: "mapgis-2d-viewer",
|
|
1654
1664
|
map: map,
|
|
1655
1665
|
})
|
|
1656
|
-
var
|
|
1666
|
+
var sketchEditor = new SketchEditor({
|
|
1657
1667
|
view: mapView,
|
|
1658
1668
|
layer: new GraphicsLayer()
|
|
1659
1669
|
})
|
|
1660
|
-
|
|
1661
|
-
console.log("是否可以进行恢复操作:" +
|
|
1662
|
-
const geometry =
|
|
1670
|
+
sketchEditor.start(SketchDataType.POLYGON)
|
|
1671
|
+
console.log("是否可以进行恢复操作:" + sketchEditor.canRedo())
|
|
1672
|
+
const geometry = sketchEditor.redo()
|
|
1663
1673
|
console.log("恢复后的几何对象" + geometry)</code></pre>
|
|
1664
1674
|
|
|
1665
1675
|
|
|
@@ -2049,12 +2059,15 @@ console.log("恢复后的几何对象" + geometry)</code></pre>
|
|
|
2049
2059
|
|
|
2050
2060
|
|
|
2051
2061
|
<pre class="prettyprint"><code>// ES5引入方式
|
|
2052
|
-
const { SimpleMarkerSymbol, SimpleFillSymbol, SimpleLineSymbol } =
|
|
2053
|
-
const { Map,
|
|
2054
|
-
const {
|
|
2062
|
+
const { SimpleMarkerSymbol, SimpleFillSymbol, SimpleLineSymbol } = zondy.Symbol
|
|
2063
|
+
const { Map, Color } = zondy
|
|
2064
|
+
const { MapView } = zondy.leaflet
|
|
2065
|
+
const { SketchStyle } = zondy.tool.sketch
|
|
2066
|
+
const { SketchEditor } = zondy.leaflet.tool.sketch
|
|
2067
|
+
const { SketchDataType } = zondy.Enum
|
|
2055
2068
|
// ES6引入方式
|
|
2056
2069
|
import { Map, SimpleMarkerSymbol, SimpleFillSymbol, SimpleLineSymbol, Color, SketchStyle, SketchDataType } from "@mapgis/webclient-common"
|
|
2057
|
-
import { MapView,
|
|
2070
|
+
import { MapView, SketchEditor } from "@mapgis/webclient-leaflet-plugin" <br/>
|
|
2058
2071
|
var map = new Map()
|
|
2059
2072
|
var mapView = new MapView({
|
|
2060
2073
|
viewId: "mapgis-2d-viewer",
|
|
@@ -2121,7 +2134,7 @@ var sketchStyle = new SketchStyle({
|
|
|
2121
2134
|
})
|
|
2122
2135
|
})
|
|
2123
2136
|
})
|
|
2124
|
-
var sketchEditor = new
|
|
2137
|
+
var sketchEditor = new SketchEditor({
|
|
2125
2138
|
view: mapView,
|
|
2126
2139
|
layer: graphicsLayer,
|
|
2127
2140
|
})
|
|
@@ -2347,16 +2360,18 @@ sketchEditor.start(SketchDataType.POLYGON)</code></pre>
|
|
|
2347
2360
|
|
|
2348
2361
|
|
|
2349
2362
|
<pre class="prettyprint"><code>// [ES5引入方式]:
|
|
2350
|
-
const {
|
|
2363
|
+
const { Polygon, LineString } = zondy.geometry
|
|
2364
|
+
const { MapView } = zondy.leaflet
|
|
2365
|
+
const { SketchEditor } = zondy.leaflet.tool.sketch
|
|
2351
2366
|
[ES6引入方式]:
|
|
2352
|
-
import { MapView,
|
|
2367
|
+
import { MapView, SketchEditor } from "@mapgis/webclient-leaflet-plugin" <br/>
|
|
2353
2368
|
import { Polygon, LineString } from "@mapgis/webclient-common" <br/>
|
|
2354
2369
|
var map = new Map()
|
|
2355
2370
|
var mapView = new MapView({
|
|
2356
2371
|
viewId: "mapgis-2d-viewer",
|
|
2357
2372
|
map: map,
|
|
2358
2373
|
})
|
|
2359
|
-
var
|
|
2374
|
+
var sketchEditor = new SketchEditor({
|
|
2360
2375
|
view: mapView,
|
|
2361
2376
|
layer: new GraphicsLayer()
|
|
2362
2377
|
})
|
|
@@ -2377,7 +2392,7 @@ const polyline = new LineString({
|
|
|
2377
2392
|
[120, 30]
|
|
2378
2393
|
]
|
|
2379
2394
|
})
|
|
2380
|
-
const newSketchEditors =
|
|
2395
|
+
const newSketchEditors = SketchEditor.split(polygon,polyline)</code></pre>
|
|
2381
2396
|
|
|
2382
2397
|
|
|
2383
2398
|
|
|
@@ -2392,7 +2407,7 @@ const newSketchEditors = SketchEditorLeaflet.split(polygon,polyline)</code></pre
|
|
|
2392
2407
|
|
|
2393
2408
|
<span class="code-name" id="start" style="font-size:30px">
|
|
2394
2409
|
|
|
2395
|
-
start<span class="signature">(dataType)</span>
|
|
2410
|
+
start<span class="signature">(dataType, extendOptions)</span>
|
|
2396
2411
|
|
|
2397
2412
|
</span>
|
|
2398
2413
|
</h4>
|
|
@@ -2461,6 +2476,35 @@ const newSketchEditors = SketchEditorLeaflet.split(polygon,polyline)</code></pre
|
|
|
2461
2476
|
|
|
2462
2477
|
|
|
2463
2478
|
|
|
2479
|
+
|
|
2480
|
+
|
|
2481
|
+
<tr class="deep-level-0">
|
|
2482
|
+
|
|
2483
|
+
<td class="name"><code>extendOptions</code></td>
|
|
2484
|
+
|
|
2485
|
+
|
|
2486
|
+
<td class="type">
|
|
2487
|
+
|
|
2488
|
+
|
|
2489
|
+
<span class="param-type">
|
|
2490
|
+
|
|
2491
|
+
Object
|
|
2492
|
+
|
|
2493
|
+
</span>
|
|
2494
|
+
|
|
2495
|
+
|
|
2496
|
+
|
|
2497
|
+
|
|
2498
|
+
</td>
|
|
2499
|
+
|
|
2500
|
+
|
|
2501
|
+
|
|
2502
|
+
<td class="description last"><p>草图编辑的扩展属性,可以通过该属性传入草图编辑额外需要的参数</p></td>
|
|
2503
|
+
</tr>
|
|
2504
|
+
|
|
2505
|
+
|
|
2506
|
+
|
|
2507
|
+
|
|
2464
2508
|
</tbody>
|
|
2465
2509
|
</table>
|
|
2466
2510
|
</div>
|
|
@@ -2532,9 +2576,14 @@ const newSketchEditors = SketchEditorLeaflet.split(polygon,polyline)</code></pre
|
|
|
2532
2576
|
|
|
2533
2577
|
|
|
2534
2578
|
<pre class="prettyprint"><code>// [ES5引入方式]:
|
|
2535
|
-
const {
|
|
2579
|
+
const { Color } = zondy
|
|
2580
|
+
const { SketchDataType } = zondy.enum
|
|
2581
|
+
const { SimpleMarkerSymbol } = zondy.symbol
|
|
2582
|
+
const { SketchStyle } = zondy.tool.sketch
|
|
2583
|
+
const { MapView } = zondy.leaflet
|
|
2584
|
+
const { SketchEditor } = zondy.leaflet.tool.sketch
|
|
2536
2585
|
[ES6引入方式]:
|
|
2537
|
-
import { MapView,
|
|
2586
|
+
import { MapView, SketchEditor } from "@mapgis/webclient-leaflet-plugin" <br/>
|
|
2538
2587
|
import { SketchStyle, SimpleMarkerSymbol, Color, SketchDataType} from "@mapgis/webclient-common" <br/>
|
|
2539
2588
|
var map = new Map()
|
|
2540
2589
|
var mapView = new MapView({
|
|
@@ -2550,14 +2599,14 @@ var sketchStyle = new SketchStyle({
|
|
|
2550
2599
|
lineStyle: undefined,
|
|
2551
2600
|
fillStyle: undefined
|
|
2552
2601
|
})
|
|
2553
|
-
var
|
|
2602
|
+
var sketchEditor = new SketchEditor({
|
|
2554
2603
|
view: mapView,
|
|
2555
2604
|
layer: new GraphicsLayer(),
|
|
2556
2605
|
vertexStyle: vertexStyle
|
|
2557
2606
|
})
|
|
2558
|
-
|
|
2559
|
-
|
|
2560
|
-
|
|
2607
|
+
sketchEditor.start(SketchDataType.POINT) // 绘制点
|
|
2608
|
+
sketchEditor.start(SketchDataType.POLYLINE) // 绘制线
|
|
2609
|
+
sketchEditor.start(SketchDataType.POLYGON) // 绘制区</code></pre>
|
|
2561
2610
|
|
|
2562
2611
|
|
|
2563
2612
|
|
|
@@ -2712,9 +2761,14 @@ SketchEditorLeaflet.start(SketchDataType.POLYGON) // 绘制区</code></pre>
|
|
|
2712
2761
|
|
|
2713
2762
|
|
|
2714
2763
|
<pre class="prettyprint"><code>// [ES5引入方式]:
|
|
2715
|
-
const {
|
|
2764
|
+
const { Color } = zondy
|
|
2765
|
+
const { SketchDataType } = zondy.enum
|
|
2766
|
+
const { SimpleMarkerSymbol } = zondy.symbol
|
|
2767
|
+
const { SketchStyle } = zondy.tool.sketch
|
|
2768
|
+
const { MapView } = zondy.leaflet
|
|
2769
|
+
const { SketchEditor } = zondy.leaflet.tool.sketch
|
|
2716
2770
|
[ES6引入方式]:
|
|
2717
|
-
import { MapView,
|
|
2771
|
+
import { MapView, SketchEditor } from "@mapgis/webclient-leaflet-plugin" <br/>
|
|
2718
2772
|
import { SketchStyle, SimpleMarkerSymbol, Color, SketchDataType} from "@mapgis/webclient-common" <br/>
|
|
2719
2773
|
import SketchEllipseDrawTool from "./SketchEllipseDrawTool" <br/>
|
|
2720
2774
|
var map = new Map()
|
|
@@ -2731,12 +2785,12 @@ var sketchStyle = new SketchStyle({
|
|
|
2731
2785
|
lineStyle: undefined,
|
|
2732
2786
|
fillStyle: undefined
|
|
2733
2787
|
})
|
|
2734
|
-
var
|
|
2788
|
+
var sketchEditor = new SketchEditor({
|
|
2735
2789
|
view: mapView,
|
|
2736
2790
|
layer: new GraphicsLayer(),
|
|
2737
2791
|
vertexStyle: vertexStyle
|
|
2738
2792
|
})
|
|
2739
|
-
|
|
2793
|
+
sketchEditor.startCustomDrawTool(SketchEllipseDrawTool, "ellipse") // 绘制椭圆</code></pre>
|
|
2740
2794
|
|
|
2741
2795
|
|
|
2742
2796
|
|
|
@@ -2956,7 +3010,10 @@ sketchEditorLeaflet.startCustomDrawTool(SketchEllipseDrawTool, "ellipse") // 绘
|
|
|
2956
3010
|
|
|
2957
3011
|
|
|
2958
3012
|
<pre class="prettyprint"><code>// [ES5引入方式]:
|
|
2959
|
-
const {
|
|
3013
|
+
const { Polygon, LineString } = zondy.geometry
|
|
3014
|
+
const { MapView } = zondy.leaflet
|
|
3015
|
+
const { SketchDataType } = zondy.enum
|
|
3016
|
+
const { SketchEditor } = zondy.leaflet.tool.sketch
|
|
2960
3017
|
[ES6引入方式]:
|
|
2961
3018
|
import { MapView, SketchEditorLeaflet } from "@mapgis/webclient-leaflet-plugin" <br/>
|
|
2962
3019
|
import { Polygon, LineString, SketchDataType } from "@mapgis/webclient-common" <br/>
|
|
@@ -2965,13 +3022,13 @@ var mapView = new MapView({
|
|
|
2965
3022
|
viewId: "mapgis-2d-viewer",
|
|
2966
3023
|
map: map,
|
|
2967
3024
|
})
|
|
2968
|
-
var
|
|
3025
|
+
var sketchEditor = new SketchEditor({
|
|
2969
3026
|
view: mapView,
|
|
2970
3027
|
layer: new GraphicsLayer()
|
|
2971
3028
|
})
|
|
2972
|
-
|
|
2973
|
-
console.log("是否可以进行撤销操作:" +
|
|
2974
|
-
const geometry =
|
|
3029
|
+
sketchEditor.start(SketchDataType.POLYGON)
|
|
3030
|
+
console.log("是否可以进行撤销操作:" + sketchEditor.canUndo())
|
|
3031
|
+
const geometry = sketchEditor.undo()
|
|
2975
3032
|
console.log("恢复后的几何对象" + geometry)</code></pre>
|
|
2976
3033
|
|
|
2977
3034
|
|
|
@@ -3157,16 +3214,18 @@ console.log("恢复后的几何对象" + geometry)</code></pre>
|
|
|
3157
3214
|
|
|
3158
3215
|
|
|
3159
3216
|
<pre class="prettyprint"><code>// [ES5引入方式]:
|
|
3160
|
-
const {
|
|
3217
|
+
const { Polygon } = zondy.geometry
|
|
3218
|
+
const { MapView } = zondy.leaflet
|
|
3219
|
+
const { SketchEditor } = zondy.leaflet.tool.sketch
|
|
3161
3220
|
[ES6引入方式]:
|
|
3162
|
-
import { MapView,
|
|
3221
|
+
import { MapView, SketchEditor } from "@mapgis/webclient-leaflet-plugin" <br/>
|
|
3163
3222
|
import { polygon } from "@mapgis/webclient-common" <br/>
|
|
3164
3223
|
var map = new Map()
|
|
3165
3224
|
var mapView = new MapView({
|
|
3166
3225
|
viewId: "mapgis-2d-viewer",
|
|
3167
3226
|
map: map,
|
|
3168
3227
|
})
|
|
3169
|
-
var
|
|
3228
|
+
var sketchEditor = new SketchEditor({
|
|
3170
3229
|
view: mapView,
|
|
3171
3230
|
layer: new GraphicsLayer()
|
|
3172
3231
|
})
|
|
@@ -3193,7 +3252,7 @@ const polygon1 = new Polygon({
|
|
|
3193
3252
|
]
|
|
3194
3253
|
})
|
|
3195
3254
|
const polygons = [polygon,polygon1]
|
|
3196
|
-
|
|
3255
|
+
sketchEditor.union(polygons)</code></pre>
|
|
3197
3256
|
|
|
3198
3257
|
|
|
3199
3258
|
|
|
@@ -0,0 +1,279 @@
|
|
|
1
|
+
<header id="page-title" class="page-title">
|
|
2
|
+
|
|
3
|
+
<span class="page-title-main">类名</span>
|
|
4
|
+
<span class="page-title-sub">TileLayer</span>
|
|
5
|
+
|
|
6
|
+
</header>
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
<section>
|
|
13
|
+
|
|
14
|
+
<article>
|
|
15
|
+
<div class="container-overview">
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
<div class='vertical-section'>
|
|
19
|
+
<div class="members">
|
|
20
|
+
<div class="member">
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
<h4 class="name" id="TileLayer">
|
|
26
|
+
<a class="href-link" href="#TileLayer">#</a>
|
|
27
|
+
|
|
28
|
+
<span class="code-name" id="TileLayer" style="font-size:30px">
|
|
29
|
+
|
|
30
|
+
new TileLayer<span class="signature">(url, options)</span>
|
|
31
|
+
|
|
32
|
+
</span>
|
|
33
|
+
</h4>
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
<div class="description">
|
|
38
|
+
<p>带裁剪功能的瓦片图层基类</p>
|
|
39
|
+
</div>
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
<h4>参数</h4>
|
|
51
|
+
|
|
52
|
+
<div class="table-container">
|
|
53
|
+
<table class="params table">
|
|
54
|
+
<thead>
|
|
55
|
+
<tr>
|
|
56
|
+
|
|
57
|
+
<th>名称</th>
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
<th>类型</th>
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
<th class="last">描述</th>
|
|
65
|
+
</tr>
|
|
66
|
+
</thead>
|
|
67
|
+
|
|
68
|
+
<tbody>
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
<tr class="deep-level-0">
|
|
73
|
+
|
|
74
|
+
<td class="name"><code>url</code></td>
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
<td class="type">
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
<span class="param-type">
|
|
81
|
+
|
|
82
|
+
String
|
|
83
|
+
|
|
84
|
+
</span>
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
</td>
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
<td class="description last"><p>服务基地址</p></td>
|
|
94
|
+
</tr>
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
<tr class="deep-level-0">
|
|
102
|
+
|
|
103
|
+
<td class="name"><code>options</code></td>
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
<td class="type">
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
<span class="param-type">
|
|
110
|
+
|
|
111
|
+
Object
|
|
112
|
+
|
|
113
|
+
</span>
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
</td>
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
<td class="description last"><p>额外构造参数</p></td>
|
|
123
|
+
</tr>
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
<tr class="deep-level-1">
|
|
129
|
+
|
|
130
|
+
<td class="name"><code>clippingArea</code></td>
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
<td class="type">
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
<span class="param-type">
|
|
137
|
+
|
|
138
|
+
Object
|
|
139
|
+
|
|
140
|
+
</span>
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
</td>
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
<td class="description last"><p>图层空间裁剪区域,需要传入geojson对象。仅支持多多边形裁剪、多边形裁剪。</p></td>
|
|
150
|
+
</tr>
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
<tr class="deep-level-1">
|
|
156
|
+
|
|
157
|
+
<td class="name"><code>httpMethod</code></td>
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
<td class="type">
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
<span class="param-type">
|
|
164
|
+
|
|
165
|
+
FetchMethod
|
|
166
|
+
|
|
167
|
+
</span>
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
</td>
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
<td class="description last"><p>http请求方式,默认为GET</p></td>
|
|
177
|
+
</tr>
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
</tbody>
|
|
186
|
+
</table>
|
|
187
|
+
</div>
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
<dl class="details">
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
</dl>
|
|
227
|
+
|
|
228
|
+
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
|
|
247
|
+
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
|
|
251
|
+
</div>
|
|
252
|
+
</div>
|
|
253
|
+
</div>
|
|
254
|
+
|
|
255
|
+
|
|
256
|
+
</div>
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
</article>
|
|
278
|
+
|
|
279
|
+
</section>
|