@mapgis/webclient-leaflet-plugin 17.2.8 → 17.4.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 +24 -2
- package/dist/es5/webclient-common.min.js +37 -5
- package/dist/es5/webclient-leaflet-plugin.min.js +1 -1
- package/dist/webclient-leaflet-plugin-es6.min.js +4 -4
- package/documention/ArcGISMapImageLayer.html +197 -122
- package/documention/ArcGISTileLayer.html +187 -62
- package/documention/EchartsLayer.html +189 -21
- package/documention/FeatureLayer.html +178 -8
- package/documention/FeatureLayerUtil.html +178 -34
- package/documention/IGSMapImageLayer.html +201 -146
- package/documention/IGSTileLayer.html +191 -86
- package/documention/L.zondy.MapvBaseLayer.html +189 -96
- package/documention/MapLayer.html +183 -38
- package/documention/MapVLayer.html +191 -33
- package/documention/MapView.html +6189 -0
- package/documention/MapViewLeaflet.html +366 -1410
- package/documention/Popup.html +200 -284
- package/documention/Screenshot.html +183 -134
- package/documention/SketchEditor.html +3211 -0
- package/documention/SketchEditorLeaflet.html +241 -477
- package/documention/TileLayer.html +182 -32
- package/documention/TileLayerWMS.html +180 -20
- package/documention/VectorTileLayer.html +188 -68
- package/documention/WMSLayerView.html +190 -121
- package/documention/WebMapServiceLayer.html +194 -104
- package/documention/WebMapTileServiceLayer.html +195 -110
- package/documention/WebTileLayer.html +192 -92
- package/documention/Zondy.ThemeLayer.GeoFeatureThemeLayer.html +290 -658
- package/documention/Zondy.ThemeLayer.GraphThemeLayer.html +324 -870
- package/documention/Zondy.ThemeLayer.RandomThemeLayer.html +305 -736
- package/documention/Zondy.ThemeLayer.ThemeLayer.html +247 -483
- package/documention/Zondy.ThemeLayer.ThemeStyle.html +234 -866
- package/documention/Zondy.ThemeLayer.rangeThemeLayer.html +304 -792
- package/documention/Zondy.ThemeLayer.rankSymbolThemeLayer.html +341 -941
- package/documention/Zondy.ThemeLayer.simpleThemeLayer.html +302 -720
- package/documention/Zondy.ThemeLayer.uniqueThemeLayer.html +299 -759
- package/documention/Zondy.Widget.html +185 -48
- package/documention/Zondy.view.UI.html +182 -31
- package/documention/global.html +11448 -131
- package/documention/index.html +15 -16
- package/documention/scripts/search.js +1 -26
- package/documention/styles/app.min.css +1 -1
- package/documention/tutorial-1./345/277/253/351/200/237/345/205/245/351/227/250.html +152 -7
- package/documention/tutorial-2.1M3D/350/246/201/347/264/240/351/200/211/345/217/226.html +153 -8
- package/documention/tutorial-2.2M3D/351/222/273/345/255/224/345/211/226/345/210/207.html +153 -8
- package/package.json +7 -8
package/documention/Popup.html
CHANGED
|
@@ -1,10 +1,142 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
|
|
4
|
+
<head>
|
|
5
|
+
|
|
6
|
+
<meta charset="utf-8">
|
|
7
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
8
|
+
<title> Popup</title>
|
|
9
|
+
<!--[if lt IE 9]>
|
|
10
|
+
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
|
|
11
|
+
<![endif]-->
|
|
12
|
+
<link type="text/css" rel="stylesheet" href="styles/app.min.css">
|
|
13
|
+
<link type="text/css" rel="stylesheet" href="styles/iframe.css">
|
|
14
|
+
<link type="text/css" rel="stylesheet" href="">
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
</head>
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
<body class="layout small-header">
|
|
22
|
+
<div id="stickyNavbarOverlay"></div>
|
|
5
23
|
|
|
6
|
-
</header>
|
|
7
24
|
|
|
25
|
+
<div class="top-nav">
|
|
26
|
+
<div class="inner">
|
|
27
|
+
<a id="hamburger" role="button" class="navbar-burger" aria-label="menu" aria-expanded="false">
|
|
28
|
+
<span aria-hidden="true"></span>
|
|
29
|
+
<span aria-hidden="true"></span>
|
|
30
|
+
<span aria-hidden="true"></span>
|
|
31
|
+
</a>
|
|
32
|
+
<div class="logo">
|
|
33
|
+
|
|
34
|
+
<h1> MapGIS Client for JavaScript API</h1>
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
</div>
|
|
38
|
+
<div class="menu">
|
|
39
|
+
|
|
40
|
+
<div class="navigation">
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
<a
|
|
44
|
+
class="link user-link "
|
|
45
|
+
href="/static/modules/common/api/common-mapgis/index.html"
|
|
46
|
+
>
|
|
47
|
+
Common
|
|
48
|
+
</a>
|
|
49
|
+
|
|
50
|
+
<a
|
|
51
|
+
class="link user-link "
|
|
52
|
+
href="/static/modules/cesium/api/cesium-mapgis/index.html"
|
|
53
|
+
>
|
|
54
|
+
Cesium-Plugin
|
|
55
|
+
</a>
|
|
56
|
+
|
|
57
|
+
<a
|
|
58
|
+
class="link user-link "
|
|
59
|
+
href="/static/modules/mapboxgl/api/mapboxgl-mapgis/index.html"
|
|
60
|
+
>
|
|
61
|
+
MapboxGL-Plugin
|
|
62
|
+
</a>
|
|
63
|
+
|
|
64
|
+
<a
|
|
65
|
+
class="link user-link "
|
|
66
|
+
href="/static/modules/leaflet/api/leaflet-mapgis/index.html"
|
|
67
|
+
>
|
|
68
|
+
Leaflet-Plugin
|
|
69
|
+
</a>
|
|
70
|
+
|
|
71
|
+
<a
|
|
72
|
+
class="link user-link "
|
|
73
|
+
href="/static/modules/openlayers/api/openLayers-mapgis/index.html"
|
|
74
|
+
>
|
|
75
|
+
OpenLayers-Plugin
|
|
76
|
+
</a>
|
|
77
|
+
|
|
78
|
+
<a
|
|
79
|
+
class="link user-link "
|
|
80
|
+
href="/static/modules/video/api/video-mapgis/index.html"
|
|
81
|
+
>
|
|
82
|
+
Video-Plugin
|
|
83
|
+
</a>
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
</div>
|
|
88
|
+
</div>
|
|
89
|
+
</div>
|
|
90
|
+
</div>
|
|
91
|
+
|
|
92
|
+
<div id="main">
|
|
93
|
+
<div
|
|
94
|
+
class="sidebar "
|
|
95
|
+
id="sidebarNav"
|
|
96
|
+
>
|
|
97
|
+
<div>
|
|
98
|
+
<span class="mapgis-api-document-span"><a href="index.html">API文档</a></span>
|
|
99
|
+
</div>
|
|
100
|
+
|
|
101
|
+
<div class="search-wrapper">
|
|
102
|
+
<input id="search" type="text" placeholder="搜索文档..." class="input">
|
|
103
|
+
</div>
|
|
104
|
+
|
|
105
|
+
<nav>
|
|
106
|
+
|
|
107
|
+
<div class="category"><div style="font-weight: bold;vertical-align: middle;padding: 0.4rem 0;" class="mapgis-menu-span"><img style="width: 20px;margin-right: 6px;vertical-align: middle;" src="./styles/m.png" alt="">扩展模块</div><ul class="mapgis-sidebar-menus"><li style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;" title="ArcGISMapImageLayer"><img style="width: 20px;margin-right: 6px;vertical-align: middle;" src="./styles/c.png" alt=""><a href="ArcGISMapImageLayer.html">ArcGISMapImageLayer</a><span style="display: none;"><p>ArcGIS地图图片图层(Leaflet)</p></span></li><li style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;" title="ArcGISTileLayer"><img style="width: 20px;margin-right: 6px;vertical-align: middle;" src="./styles/c.png" alt=""><a href="ArcGISTileLayer.html">ArcGISTileLayer</a><span style="display: none;"><p>ArcGIS瓦片图层(Leaflet)</p></span></li><li style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;" title="EchartsLayer"><img style="width: 20px;margin-right: 6px;vertical-align: middle;" src="./styles/c.png" alt=""><a href="EchartsLayer.html">EchartsLayer</a><span style="display: none;"><p>Echarts图层(Leaflet)</p></span></li><li style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;" title="FeatureLayer"><img style="width: 20px;margin-right: 6px;vertical-align: middle;" src="./styles/c.png" alt=""><a href="FeatureLayer.html">FeatureLayer</a><span style="display: none;"><p>要素图层(Leaflet)</p></span></li><li style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;" title="IGSMapImageLayer"><img style="width: 20px;margin-right: 6px;vertical-align: middle;" src="./styles/c.png" alt=""><a href="IGSMapImageLayer.html">IGSMapImageLayer</a><span style="display: none;"><p>地图图片图层(Leaflet)</p></span></li><li style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;" title="IGSTileLayer"><img style="width: 20px;margin-right: 6px;vertical-align: middle;" src="./styles/c.png" alt=""><a href="IGSTileLayer.html">IGSTileLayer</a><span style="display: none;"><p>IGS瓦片图层(Leaflet)</p></span></li><li style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;" title="MapLayer"><img style="width: 20px;margin-right: 6px;vertical-align: middle;" src="./styles/c.png" alt=""><a href="MapLayer.html">MapLayer</a><span style="display: none;"><p>屏幕出一张图图层基类</p></span></li><li style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;" title="MapVLayer"><img style="width: 20px;margin-right: 6px;vertical-align: middle;" src="./styles/c.png" alt=""><a href="MapVLayer.html">MapVLayer</a><span style="display: none;"><p>MapV图层(Leaflet)</p></span></li><li style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;" title="TileLayer"><img style="width: 20px;margin-right: 6px;vertical-align: middle;" src="./styles/c.png" alt=""><a href="TileLayer.html">TileLayer</a><span style="display: none;"><p>带裁剪功能的瓦片图层基类</p></span></li><li style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;" title="TileLayerWMS"><img style="width: 20px;margin-right: 6px;vertical-align: middle;" src="./styles/c.png" alt=""><a href="TileLayerWMS.html">TileLayerWMS</a><span style="display: none;"><p>WMS图层基类(相比于原生的L.TileLayer.WMS, 此图层支持空间裁剪功能)</p></span></li><li style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;" title="VectorTileLayer"><img style="width: 20px;margin-right: 6px;vertical-align: middle;" src="./styles/c.png" alt=""><a href="VectorTileLayer.html">VectorTileLayer</a><span style="display: none;"><p>矢量瓦片图层(Leaflet)</p></span></li><li style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;" title="WebMapServiceLayer"><img style="width: 20px;margin-right: 6px;vertical-align: middle;" src="./styles/c.png" alt=""><a href="WebMapServiceLayer.html">WebMapServiceLayer</a><span style="display: none;"><p>WMS图层(Leaflet)</p></span></li><li style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;" title="WebMapTileServiceLayer"><img style="width: 20px;margin-right: 6px;vertical-align: middle;" src="./styles/c.png" alt=""><a href="WebMapTileServiceLayer.html">WebMapTileServiceLayer</a><span style="display: none;"><p>WMTS图层(Leaflet)</p></span></li><li style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;" title="WebTileLayer"><img style="width: 20px;margin-right: 6px;vertical-align: middle;" src="./styles/c.png" alt=""><a href="WebTileLayer.html">WebTileLayer</a><span style="display: none;"><p>网络瓦片图层(Leaflet)</p></span></li></ul><div style="font-weight: bold;vertical-align: middle;padding: 0.4rem 0;" class="mapgis-menu-span"><img style="width: 20px;margin-right: 6px;vertical-align: middle;" src="./styles/m.png" alt="">工具类模块</div><ul class="mapgis-sidebar-menus"><li style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;" title="FeatureLayerUtil"><img style="width: 20px;margin-right: 6px;vertical-align: middle;" src="./styles/c.png" alt=""><a href="FeatureLayerUtil.html">FeatureLayerUtil</a><span style="display: none;"><p>要素图层工具类(Leaflet)</p></span></li></ul><div style="font-weight: bold;vertical-align: middle;padding: 0.4rem 0;" class="mapgis-menu-span"><img style="width: 20px;margin-right: 6px;vertical-align: middle;" src="./styles/m.png" alt="">视图模块</div><ul class="mapgis-sidebar-menus"><li style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;" title="MapView"><img style="width: 20px;margin-right: 6px;vertical-align: middle;" src="./styles/c.png" alt=""><a href="MapView.html">MapView</a><span style="display: none;"><p>二维场景视图(leaflet引擎),对地图引擎进行管理,如果要对地图图层进行管理请参考<code>Map</code>,<br/>
|
|
108
|
+
继承自<a href='http://webclient.smaryun.com/static/modules/common/api/common-mapgis/MapView.html' target='_blank'>zondy.MapView</a><br/>
|
|
109
|
+
参考示例:
|
|
110
|
+
<a href='#MapView'>[初始化二维场景视图]</a>
|
|
111
|
+
<br>[ES5引入方式]:<br/>
|
|
112
|
+
zondy.leaflet.MapView() <br/>
|
|
113
|
+
[ES6引入方式]:<br/>
|
|
114
|
+
import { MapView } from '@mapgis/webclient-leaflet-plugin' <br/></p></span></li><li style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;" title="Popup"><img style="width: 20px;margin-right: 6px;vertical-align: middle;" src="./styles/c.png" alt=""><a href="Popup.html">Popup</a><span style="display: none;"><p>二维场景信息弹窗(leaflet引擎)
|
|
115
|
+
参考示例:
|
|
116
|
+
<a href='#MapView'>[初始化二维场景视图]</a>
|
|
117
|
+
[ES6引入方式]:<br/>
|
|
118
|
+
import { Popup } from '@mapgis/webclient-leaflet-plugin' <br/>
|
|
119
|
+
自定义样式说明:<br/>
|
|
120
|
+
zondy-popup__content 弹窗容器样式<br/>
|
|
121
|
+
zondy-popup__tip 弹窗对话框箭头样式<br/>
|
|
122
|
+
zondy-popup__header 弹窗头部样式<br/>
|
|
123
|
+
zondy-popup__content 弹窗主体样式<br/>
|
|
124
|
+
zondy-popup__footer 弹窗底部样式<br/></p></span></li><li style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;" title="Screenshot"><img style="width: 20px;margin-right: 6px;vertical-align: middle;" src="./styles/c.png" alt=""><a href="Screenshot.html">Screenshot</a><span style="display: none;"><p>屏幕打印工具</p></span></li></ul><div style="font-weight: bold;vertical-align: middle;padding: 0.4rem 0;" class="mapgis-menu-span"><img style="width: 20px;margin-right: 6px;vertical-align: middle;" src="./styles/m.png" alt="">草图编辑模块</div><ul class="mapgis-sidebar-menus"><li style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;" title="SketchEditor"><img style="width: 20px;margin-right: 6px;vertical-align: middle;" src="./styles/c.png" alt=""><a href="SketchEditor.html">SketchEditor</a><span style="display: none;"><p>二维Leaflet引擎草图编辑类<br/>
|
|
125
|
+
继承自<a href='http://webclient.smaryun.com/static/modules/common/api/common-mapgis/SketchEditor.html' target='_blank'>zondy.SketchEditor</a><br/>
|
|
126
|
+
<br>[ES5引入方式]:<br/>
|
|
127
|
+
const { SketchEditor } = zondy.leaflet.tool.sketch <br/>
|
|
128
|
+
[ES6引入方式]:<br/>
|
|
129
|
+
import { SketchEditor } from "@mapgis/webclient-leaflet-plugin" <br/></p></span></li></ul><div style="font-weight: bold;vertical-align: middle;padding: 0.4rem 0;" class="mapgis-menu-span"><img style="width: 20px;margin-right: 6px;vertical-align: middle;" src="./styles/m.png" alt="">渲染器模块</div><ul class="mapgis-sidebar-menus"><li style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;" title="zondy.themelayer.GraphThemeLayer"><img style="width: 20px;margin-right: 6px;vertical-align: middle;" src="./styles/c.png" alt=""><a href="zondy.themelayer.GraphThemeLayer.html">GraphThemeLayer</a><span style="display: none;"><p>统计专题图通过为每个要素绘制统计图表来反映其对应的专题值的大小。它可同时表示多个字段属性信息,在区域本身与各区域之间形成横向和纵向的对比。<br>统计专题图多用于具有相关数量特征的地图上,比如表示不同地区多年的粮食产量、GDP、人口等,不同时段客运量、地铁流量等。目前提供的统计图类型有:柱状图(Bar),折线图(Line),饼图(Pie),三维柱状图(Bar3D),点状图(Point),环状图(Ring)。</p></span></li></ul></div>
|
|
130
|
+
|
|
131
|
+
</nav>
|
|
132
|
+
</div>
|
|
133
|
+
<div class="core" id="main-content-wrapper">
|
|
134
|
+
<div class="content">
|
|
135
|
+
<header id="page-title" class="page-title">
|
|
136
|
+
<span class="page-title-main">类名</span>
|
|
137
|
+
<span class="page-title-sub">Popup</span>
|
|
138
|
+
</header>
|
|
139
|
+
|
|
8
140
|
|
|
9
141
|
|
|
10
142
|
|
|
@@ -25,7 +157,7 @@
|
|
|
25
157
|
<h4 class="name" id="Popup">
|
|
26
158
|
<a class="href-link" href="#Popup">#</a>
|
|
27
159
|
|
|
28
|
-
<span class="code-name"
|
|
160
|
+
<span class="code-name" style="font-size:30px">
|
|
29
161
|
|
|
30
162
|
new Popup<span class="signature">(options)</span>
|
|
31
163
|
|
|
@@ -57,7 +189,7 @@ zondy-popup__footer 弹窗底部样式<br/></p>
|
|
|
57
189
|
|
|
58
190
|
|
|
59
191
|
|
|
60
|
-
<h4
|
|
192
|
+
<h4>参数:</h4>
|
|
61
193
|
|
|
62
194
|
<div class="table-container">
|
|
63
195
|
<table class="params table">
|
|
@@ -87,12 +219,7 @@ zondy-popup__footer 弹窗底部样式<br/></p>
|
|
|
87
219
|
<td class="type">
|
|
88
220
|
|
|
89
221
|
|
|
90
|
-
<span class="param-type">
|
|
91
|
-
|
|
92
|
-
Object
|
|
93
|
-
|
|
94
|
-
</span>
|
|
95
|
-
|
|
222
|
+
<span class="param-type">Object</span>
|
|
96
223
|
|
|
97
224
|
|
|
98
225
|
|
|
@@ -114,12 +241,7 @@ zondy-popup__footer 弹窗底部样式<br/></p>
|
|
|
114
241
|
<td class="type">
|
|
115
242
|
|
|
116
243
|
|
|
117
|
-
<span class="param-type">
|
|
118
|
-
|
|
119
|
-
MapView
|
|
120
|
-
|
|
121
|
-
</span>
|
|
122
|
-
|
|
244
|
+
<span class="param-type"><a href="MapView.html">MapView</a></span>
|
|
123
245
|
|
|
124
246
|
|
|
125
247
|
|
|
@@ -141,12 +263,7 @@ zondy-popup__footer 弹窗底部样式<br/></p>
|
|
|
141
263
|
<td class="type">
|
|
142
264
|
|
|
143
265
|
|
|
144
|
-
<span class="param-type">
|
|
145
|
-
|
|
146
|
-
String
|
|
147
|
-
|
|
148
|
-
</span>
|
|
149
|
-
|
|
266
|
+
<span class="param-type">String</span>
|
|
150
267
|
|
|
151
268
|
|
|
152
269
|
|
|
@@ -168,12 +285,7 @@ zondy-popup__footer 弹窗底部样式<br/></p>
|
|
|
168
285
|
<td class="type">
|
|
169
286
|
|
|
170
287
|
|
|
171
|
-
<span class="param-type">
|
|
172
|
-
|
|
173
|
-
Point
|
|
174
|
-
|
|
175
|
-
</span>
|
|
176
|
-
|
|
288
|
+
<span class="param-type">Point</span>
|
|
177
289
|
|
|
178
290
|
|
|
179
291
|
|
|
@@ -195,12 +307,7 @@ zondy-popup__footer 弹窗底部样式<br/></p>
|
|
|
195
307
|
<td class="type">
|
|
196
308
|
|
|
197
309
|
|
|
198
|
-
<span class="param-type">
|
|
199
|
-
|
|
200
|
-
String
|
|
201
|
-
|
|
202
|
-
</span>
|
|
203
|
-
|
|
310
|
+
<span class="param-type">String</span>
|
|
204
311
|
|
|
205
312
|
|
|
206
313
|
|
|
@@ -222,19 +329,10 @@ zondy-popup__footer 弹窗底部样式<br/></p>
|
|
|
222
329
|
<td class="type">
|
|
223
330
|
|
|
224
331
|
|
|
225
|
-
<span class="param-type">
|
|
226
|
-
|
|
227
|
-
String
|
|
228
|
-
|
|
229
|
-
</span>
|
|
332
|
+
<span class="param-type">String</span>
|
|
230
333
|
|
|
|
231
334
|
|
|
232
|
-
<span class="param-type">
|
|
233
|
-
|
|
234
|
-
HTMLElement
|
|
235
|
-
|
|
236
|
-
</span>
|
|
237
|
-
|
|
335
|
+
<span class="param-type">HTMLElement</span>
|
|
238
336
|
|
|
239
337
|
|
|
240
338
|
|
|
@@ -256,12 +354,7 @@ zondy-popup__footer 弹窗底部样式<br/></p>
|
|
|
256
354
|
<td class="type">
|
|
257
355
|
|
|
258
356
|
|
|
259
|
-
<span class="param-type">
|
|
260
|
-
|
|
261
|
-
String
|
|
262
|
-
|
|
263
|
-
</span>
|
|
264
|
-
|
|
357
|
+
<span class="param-type">String</span>
|
|
265
358
|
|
|
266
359
|
|
|
267
360
|
|
|
@@ -283,12 +376,7 @@ zondy-popup__footer 弹窗底部样式<br/></p>
|
|
|
283
376
|
<td class="type">
|
|
284
377
|
|
|
285
378
|
|
|
286
|
-
<span class="param-type">
|
|
287
|
-
|
|
288
|
-
Array
|
|
289
|
-
|
|
290
|
-
</span>
|
|
291
|
-
|
|
379
|
+
<span class="param-type">Array</span>
|
|
292
380
|
|
|
293
381
|
|
|
294
382
|
|
|
@@ -444,130 +532,6 @@ mapView.popup.close(popupObj)
|
|
|
444
532
|
|
|
445
533
|
<div class='vertical-section'>
|
|
446
534
|
<h3 id='member'>成员变量</h3>
|
|
447
|
-
<h4 style="margin-top: 20px;margin-bottom: 20px;">成员变量概述</h4>
|
|
448
|
-
<div class="table-container">
|
|
449
|
-
<table class="params table">
|
|
450
|
-
<thead>
|
|
451
|
-
<tr>
|
|
452
|
-
<th>名称</th>
|
|
453
|
-
<th>类型</th>
|
|
454
|
-
<th>描述</th>
|
|
455
|
-
</tr>
|
|
456
|
-
</thead>
|
|
457
|
-
<tbody>
|
|
458
|
-
|
|
459
|
-
<tr class="deep-level-0">
|
|
460
|
-
<td class="name"><code><a href="#alignment">alignment</a></code></td>
|
|
461
|
-
<td class="name">
|
|
462
|
-
<code>
|
|
463
|
-
|
|
464
|
-
<span class="param-type">
|
|
465
|
-
|
|
466
|
-
String
|
|
467
|
-
|
|
468
|
-
</span>
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
</code>
|
|
473
|
-
</td>
|
|
474
|
-
<td class="name"><code><p>弹框方位,值为"auto"|"bottom-left"|"top-center"|"top-right"|"bottom-left"|"bottom-center"|"bottom-right"</p></code></td>
|
|
475
|
-
</tr>
|
|
476
|
-
|
|
477
|
-
<tr class="deep-level-0">
|
|
478
|
-
<td class="name"><code><a href="#content">content</a></code></td>
|
|
479
|
-
<td class="name">
|
|
480
|
-
<code>
|
|
481
|
-
|
|
482
|
-
<span class="param-type">
|
|
483
|
-
|
|
484
|
-
String
|
|
485
|
-
|
|
486
|
-
</span>
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
</code>
|
|
491
|
-
</td>
|
|
492
|
-
<td class="name"><code><p>弹框内容</p></code></td>
|
|
493
|
-
</tr>
|
|
494
|
-
|
|
495
|
-
<tr class="deep-level-0">
|
|
496
|
-
<td class="name"><code><a href="#defaultButtons">defaultButtons</a></code></td>
|
|
497
|
-
<td class="name">
|
|
498
|
-
<code>
|
|
499
|
-
|
|
500
|
-
<span class="param-type">
|
|
501
|
-
|
|
502
|
-
Array
|
|
503
|
-
|
|
504
|
-
</span>
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
</code>
|
|
509
|
-
</td>
|
|
510
|
-
<td class="name"><code><p>默认按钮 ['toggle','close','zoom']</p></code></td>
|
|
511
|
-
</tr>
|
|
512
|
-
|
|
513
|
-
<tr class="deep-level-0">
|
|
514
|
-
<td class="name"><code><a href="#location">location</a></code></td>
|
|
515
|
-
<td class="name">
|
|
516
|
-
<code>
|
|
517
|
-
|
|
518
|
-
<span class="param-type">
|
|
519
|
-
|
|
520
|
-
String
|
|
521
|
-
|
|
522
|
-
</span>
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
</code>
|
|
527
|
-
</td>
|
|
528
|
-
<td class="name"><code><p>弹框位置</p></code></td>
|
|
529
|
-
</tr>
|
|
530
|
-
|
|
531
|
-
<tr class="deep-level-0">
|
|
532
|
-
<td class="name"><code><a href="#title">title</a></code></td>
|
|
533
|
-
<td class="name">
|
|
534
|
-
<code>
|
|
535
|
-
|
|
536
|
-
<span class="param-type">
|
|
537
|
-
|
|
538
|
-
String
|
|
539
|
-
|
|
540
|
-
</span>
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
</code>
|
|
545
|
-
</td>
|
|
546
|
-
<td class="name"><code><p>弹框标题</p></code></td>
|
|
547
|
-
</tr>
|
|
548
|
-
|
|
549
|
-
<tr class="deep-level-0">
|
|
550
|
-
<td class="name"><code><a href="#view">view</a></code></td>
|
|
551
|
-
<td class="name">
|
|
552
|
-
<code>
|
|
553
|
-
|
|
554
|
-
<span class="param-type">
|
|
555
|
-
|
|
556
|
-
MapView
|
|
557
|
-
|
|
558
|
-
</span>
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
</code>
|
|
563
|
-
</td>
|
|
564
|
-
<td class="name"><code><p>弹框的地图视野</p></code></td>
|
|
565
|
-
</tr>
|
|
566
|
-
|
|
567
|
-
</tbody>
|
|
568
|
-
</table>
|
|
569
|
-
</div>
|
|
570
|
-
<h4 style="margin-top: 20px;margin-bottom: 20px;">成员变量详情</h4>
|
|
571
535
|
<div class="members">
|
|
572
536
|
|
|
573
537
|
<div class="member">
|
|
@@ -575,12 +539,7 @@ mapView.popup.close(popupObj)
|
|
|
575
539
|
<span class="method-parameter is-pulled-right">
|
|
576
540
|
<label>类型:</label>
|
|
577
541
|
|
|
578
|
-
<span class="param-type">
|
|
579
|
-
|
|
580
|
-
String
|
|
581
|
-
|
|
582
|
-
</span>
|
|
583
|
-
|
|
542
|
+
<span class="param-type">String</span>
|
|
584
543
|
|
|
585
544
|
|
|
586
545
|
</span>
|
|
@@ -650,12 +609,7 @@ mapView.popup.close(popupObj)
|
|
|
650
609
|
<span class="method-parameter is-pulled-right">
|
|
651
610
|
<label>类型:</label>
|
|
652
611
|
|
|
653
|
-
<span class="param-type">
|
|
654
|
-
|
|
655
|
-
String
|
|
656
|
-
|
|
657
|
-
</span>
|
|
658
|
-
|
|
612
|
+
<span class="param-type">String</span>
|
|
659
613
|
|
|
660
614
|
|
|
661
615
|
</span>
|
|
@@ -725,12 +679,7 @@ mapView.popup.close(popupObj)
|
|
|
725
679
|
<span class="method-parameter is-pulled-right">
|
|
726
680
|
<label>类型:</label>
|
|
727
681
|
|
|
728
|
-
<span class="param-type">
|
|
729
|
-
|
|
730
|
-
Array
|
|
731
|
-
|
|
732
|
-
</span>
|
|
733
|
-
|
|
682
|
+
<span class="param-type">Array</span>
|
|
734
683
|
|
|
735
684
|
|
|
736
685
|
</span>
|
|
@@ -800,12 +749,7 @@ mapView.popup.close(popupObj)
|
|
|
800
749
|
<span class="method-parameter is-pulled-right">
|
|
801
750
|
<label>类型:</label>
|
|
802
751
|
|
|
803
|
-
<span class="param-type">
|
|
804
|
-
|
|
805
|
-
String
|
|
806
|
-
|
|
807
|
-
</span>
|
|
808
|
-
|
|
752
|
+
<span class="param-type">String</span>
|
|
809
753
|
|
|
810
754
|
|
|
811
755
|
</span>
|
|
@@ -875,12 +819,7 @@ mapView.popup.close(popupObj)
|
|
|
875
819
|
<span class="method-parameter is-pulled-right">
|
|
876
820
|
<label>类型:</label>
|
|
877
821
|
|
|
878
|
-
<span class="param-type">
|
|
879
|
-
|
|
880
|
-
String
|
|
881
|
-
|
|
882
|
-
</span>
|
|
883
|
-
|
|
822
|
+
<span class="param-type">String</span>
|
|
884
823
|
|
|
885
824
|
|
|
886
825
|
</span>
|
|
@@ -950,12 +889,7 @@ mapView.popup.close(popupObj)
|
|
|
950
889
|
<span class="method-parameter is-pulled-right">
|
|
951
890
|
<label>类型:</label>
|
|
952
891
|
|
|
953
|
-
<span class="param-type">
|
|
954
|
-
|
|
955
|
-
MapView
|
|
956
|
-
|
|
957
|
-
</span>
|
|
958
|
-
|
|
892
|
+
<span class="param-type"><a href="MapView.html">MapView</a></span>
|
|
959
893
|
|
|
960
894
|
|
|
961
895
|
</span>
|
|
@@ -1027,53 +961,7 @@ mapView.popup.close(popupObj)
|
|
|
1027
961
|
|
|
1028
962
|
<div class='vertical-section'>
|
|
1029
963
|
<h3 id='function'>方法</h3>
|
|
1030
|
-
<h4 style="margin-top: 20px;margin-bottom: 20px;">方法概述</h4>
|
|
1031
964
|
<div class="members">
|
|
1032
|
-
<div class="table-container">
|
|
1033
|
-
<table class="params table">
|
|
1034
|
-
<thead>
|
|
1035
|
-
<tr>
|
|
1036
|
-
<th>名称</th>
|
|
1037
|
-
<th>返回值类型</th>
|
|
1038
|
-
<th>描述</th>
|
|
1039
|
-
</tr>
|
|
1040
|
-
</thead>
|
|
1041
|
-
<tbody>
|
|
1042
|
-
|
|
1043
|
-
<tr class="deep-level-0">
|
|
1044
|
-
<td class="name"><code><a href="#close">close</a></code></td>
|
|
1045
|
-
<td class="name">
|
|
1046
|
-
<code>
|
|
1047
|
-
|
|
1048
|
-
</code>
|
|
1049
|
-
</td>
|
|
1050
|
-
<td class="name"><code><p>关闭popup弹窗</p></code></td>
|
|
1051
|
-
</tr>
|
|
1052
|
-
|
|
1053
|
-
<tr class="deep-level-0">
|
|
1054
|
-
<td class="name"><code><a href="#open">open</a></code></td>
|
|
1055
|
-
<td class="name">
|
|
1056
|
-
<code>
|
|
1057
|
-
|
|
1058
|
-
</code>
|
|
1059
|
-
</td>
|
|
1060
|
-
<td class="name"><code><p>打开popup弹窗</p></code></td>
|
|
1061
|
-
</tr>
|
|
1062
|
-
|
|
1063
|
-
<tr class="deep-level-0">
|
|
1064
|
-
<td class="name"><code><a href="#openPopup">openPopup</a></code></td>
|
|
1065
|
-
<td class="name">
|
|
1066
|
-
<code>
|
|
1067
|
-
|
|
1068
|
-
</code>
|
|
1069
|
-
</td>
|
|
1070
|
-
<td class="name"><code><p>打开popup弹窗</p></code></td>
|
|
1071
|
-
</tr>
|
|
1072
|
-
|
|
1073
|
-
</tbody>
|
|
1074
|
-
</table>
|
|
1075
|
-
</div>
|
|
1076
|
-
<h4 style="margin-top: 20px;margin-bottom: 20px;">方法详情</h4>
|
|
1077
965
|
|
|
1078
966
|
<div class="member">
|
|
1079
967
|
|
|
@@ -1082,7 +970,7 @@ mapView.popup.close(popupObj)
|
|
|
1082
970
|
<h4 class="name" id="close">
|
|
1083
971
|
<a class="href-link" href="#close">#</a>
|
|
1084
972
|
|
|
1085
|
-
<span class="code-name"
|
|
973
|
+
<span class="code-name" style="font-size:30px">
|
|
1086
974
|
|
|
1087
975
|
close<span class="signature">()</span>
|
|
1088
976
|
|
|
@@ -1173,7 +1061,7 @@ mapView.popup.close(popupObj)
|
|
|
1173
1061
|
<h4 class="name" id="open">
|
|
1174
1062
|
<a class="href-link" href="#open">#</a>
|
|
1175
1063
|
|
|
1176
|
-
<span class="code-name"
|
|
1064
|
+
<span class="code-name" style="font-size:30px">
|
|
1177
1065
|
|
|
1178
1066
|
open<span class="signature">(options)</span>
|
|
1179
1067
|
|
|
@@ -1195,7 +1083,7 @@ mapView.popup.close(popupObj)
|
|
|
1195
1083
|
|
|
1196
1084
|
|
|
1197
1085
|
|
|
1198
|
-
<h4
|
|
1086
|
+
<h4>参数:</h4>
|
|
1199
1087
|
|
|
1200
1088
|
<div class="table-container">
|
|
1201
1089
|
<table class="params table">
|
|
@@ -1225,12 +1113,7 @@ mapView.popup.close(popupObj)
|
|
|
1225
1113
|
<td class="type">
|
|
1226
1114
|
|
|
1227
1115
|
|
|
1228
|
-
<span class="param-type">
|
|
1229
|
-
|
|
1230
|
-
Object
|
|
1231
|
-
|
|
1232
|
-
</span>
|
|
1233
|
-
|
|
1116
|
+
<span class="param-type">Object</span>
|
|
1234
1117
|
|
|
1235
1118
|
|
|
1236
1119
|
|
|
@@ -1318,7 +1201,7 @@ mapView.popup.close(popupObj)
|
|
|
1318
1201
|
<h4 class="name" id="openPopup">
|
|
1319
1202
|
<a class="href-link" href="#openPopup">#</a>
|
|
1320
1203
|
|
|
1321
|
-
<span class="code-name"
|
|
1204
|
+
<span class="code-name" style="font-size:30px">
|
|
1322
1205
|
|
|
1323
1206
|
openPopup<span class="signature">(options)</span>
|
|
1324
1207
|
|
|
@@ -1340,7 +1223,7 @@ mapView.popup.close(popupObj)
|
|
|
1340
1223
|
|
|
1341
1224
|
|
|
1342
1225
|
|
|
1343
|
-
<h4
|
|
1226
|
+
<h4>参数:</h4>
|
|
1344
1227
|
|
|
1345
1228
|
<div class="table-container">
|
|
1346
1229
|
<table class="params table">
|
|
@@ -1370,12 +1253,7 @@ mapView.popup.close(popupObj)
|
|
|
1370
1253
|
<td class="type">
|
|
1371
1254
|
|
|
1372
1255
|
|
|
1373
|
-
<span class="param-type">
|
|
1374
|
-
|
|
1375
|
-
Object
|
|
1376
|
-
|
|
1377
|
-
</span>
|
|
1378
|
-
|
|
1256
|
+
<span class="param-type">Object</span>
|
|
1379
1257
|
|
|
1380
1258
|
|
|
1381
1259
|
|
|
@@ -1465,4 +1343,42 @@ mapView.popup.close(popupObj)
|
|
|
1465
1343
|
|
|
1466
1344
|
</article>
|
|
1467
1345
|
|
|
1468
|
-
</section>
|
|
1346
|
+
</section>
|
|
1347
|
+
|
|
1348
|
+
|
|
1349
|
+
|
|
1350
|
+
|
|
1351
|
+
</div>
|
|
1352
|
+
|
|
1353
|
+
<footer class="footer">
|
|
1354
|
+
<div class="content has-text-centered">
|
|
1355
|
+
<p>文档生成<a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a></p>
|
|
1356
|
+
<p class="sidebar-created-by">
|
|
1357
|
+
<a href="http://www.smaryun.com" target="_blank">司马云</a> <span>© 2023 云生态圈</span>
|
|
1358
|
+
<a href="http://webclient.smaryun.com:8086/#/index" target="_blank">MapGIS Client for JavaScript</a>
|
|
1359
|
+
</p>
|
|
1360
|
+
</div>
|
|
1361
|
+
</footer>
|
|
1362
|
+
|
|
1363
|
+
</div>
|
|
1364
|
+
<div id="side-nav" class="side-nav">
|
|
1365
|
+
<div style="margin-bottom: 10px;">
|
|
1366
|
+
<img style="vertical-align: middle;margin-right: 10px;width: 30px;" src="./styles/anchor.png"/><a href="#page-title">构造函数</a>
|
|
1367
|
+
</div>
|
|
1368
|
+
<div style="margin-bottom: 10px;">
|
|
1369
|
+
<img style="vertical-align: middle;margin-right: 10px;width: 30px;" src="./styles/anchor.png"/><a href="#member">成员变量</a>
|
|
1370
|
+
</div>
|
|
1371
|
+
<div style="margin-bottom: 10px;">
|
|
1372
|
+
<img style="vertical-align: middle;margin-right: 10px;width: 30px;" src="./styles/anchor.png"/><a href="#function">方法</a>
|
|
1373
|
+
</div>
|
|
1374
|
+
<div>
|
|
1375
|
+
<img style="vertical-align: middle;margin-right: 10px;width: 30px;" src="./styles/anchor.png"/><a href="#event">事件</a>
|
|
1376
|
+
</div>
|
|
1377
|
+
</div>
|
|
1378
|
+
</div>
|
|
1379
|
+
<script src="scripts/linenumber.js"> </script>
|
|
1380
|
+
|
|
1381
|
+
<script src="scripts/search.js"> </script>
|
|
1382
|
+
|
|
1383
|
+
</body>
|
|
1384
|
+
</html>
|