11< html xmlns ="http://www.w3.org/1999/html ">
22< head >
3- < title > SuperMap iClient for JavaScript 9D alpha </ title >
3+ < title > SuperMap iClient for JavaScript 9D Beta </ title >
44 < link rel ="shortcut icon " type ="image/x-icon " href ="./favicon.ico "/>
55 < meta http-equiv ="Content-Type " content ="text/html; charset=utf-8 ">
66 < meta name ="viewport " content ="width=device-width, initial-scale=1.0,user-scalable=no ">
@@ -94,7 +94,10 @@ <h3 class="tc pt50">云GIS网络客户端开发平台</h3>
9494 < h2 class ="feature-heading "> 开源产品的最佳实践</ h2 >
9595
9696 < p class ="feature-text ">
97- 全面对接集成了Leaflet、OpenLayers、Mapbox GL JS、ECharts、D3等常用的地图库和制图制表库,避免用户的重复学习和成本投入
97+ 全面对接集成了 < a target ="_blank " href ="http://leafletjs.com "> Leaflet</ a > 、< a target ="_blank " href ="https://openlayers.org/ "> OpenLayers</ a > 、
98+ < a target ="_blank " href ="https://www.mapbox.com/mapbox-gl-js/api/ "> Mapbox GL JS</ a > 、
99+ < a target ="_blank " href ="http://echarts.baidu.com/ "> ECharts</ a > 、
100+ < a target ="_blank " href ="https://d3js.org/ "> D3</ a > 、< a target ="_blank " href ="http://mapv.baidu.com/ "> MapV</ a > 等常用的地图库和制图制表库,避免用户的重复学习和成本投入
98101 </ p >
99102 </ div >
100103 < div class ="col-lg-5 ">
@@ -109,7 +112,7 @@ <h2 class="feature-heading">开源产品的最佳实践</h2>
109112 < h2 class ="feature-heading "> Morden WebGIS</ h2 >
110113
111114 < p class ="feature-text ">
112- 基于H5、WebGL、WebSocket、CSS6、RequireJS、ReactJS等现代Web技术栈,完全重建,符合IT发展的先进方向
115+ 基于H5、WebGL、WebSocket、CSS6、RequireJS、ReactJS等现代Web技术栈,完全重建
113116 </ p >
114117 </ div >
115118 < div class ="col-lg-5 pull-lg-7 ">
@@ -126,7 +129,7 @@ <h2 class="feature-heading">Morden WebGIS</h2>
126129 < h2 class ="feature-heading "> 完全开源 + 开放</ h2 >
127130
128131 < p class ="feature-text ">
129- 完全开源至Github、OSChina,建立开源社区,为Leaflet、OpenLayers、Mapbox GL JS等开源库提供扩展插件包,融入国际GIS开源社区
132+ iClient for JavaScript 9D 核心源代码基于Apache License 2.0开源许可协议发布,可在 github、 < a target =" _blank " href =" https://git.oschina.net/isupermap/iClient9 " > oschina </ a > 自由下载和分发使用
130133 </ p >
131134 </ div >
132135 < div class ="col-lg-5 ">
@@ -190,7 +193,9 @@ <h1 class='first_title'>快速入门</h1>
190193 </ div >
191194 < div id ="fast-leaflet-content " class ="collapse in ">
192195 < div class ="map " id ="leafletMap "> </ div >
193- < p style ="margin-top: 18px "> 将 iSevrer 发布的地图加载至 Leaflet 的 map 中</ p >
196+ < p style ="margin-top: 18px "> 引入 iclient9-leaflet.js 或 iclient9-leaflet.min.js,以 iclient9-leaflet.js 为例:</ p >
197+ < pre class ="javascript "> < code class ="html "> <script type="text/javascript" src="http://iclient.supermapol.com/dist/iclient9-leaflet.js"></script></ code > </ pre >
198+ < p style ="margin-top: 18px "> 将 iServer 发布的地图加载至 Leaflet 的 map 中:</ p >
194199 < pre class ="javascript "> < code > var map = L.map('map');
195200L.supermap.tiledMapLayer("http://localhost:8090/iserver/services/map/rest/maps/China").addTo(map);</ code > < a href ="../examples/leaflet/editor.html#01_tiledMapLayer3857 " style ="font-size: 10px;float:right "> 查看源码 »</ a > </ pre >
196201 </ div >
@@ -205,13 +210,15 @@ <h1 class='first_title'>快速入门</h1>
205210 </ div >
206211 < div id ="fast-openlayers-content " class ="collapse in ">
207212 < div class ="map " id ="olMap "> </ div >
208- < p style ="margin-top: 19px "> 将 iSevrer 发布的地图加载至 OpenLayers 的 map 中</ p >
213+ < p style ="margin-top: 18px "> 引入 iclient9-openlayers.js 或 iclient9-openlayers.min.js,以 iclient9-openlayers.js 为例::</ p >
214+ < pre class ="javascript "> < code class ="html "> <script src="http://iclient.supermapol.com/iclient9-openlayers.js"></script></ code > </ pre >
215+ < p style ="margin-top: 19px "> 将 iServer 发布的地图加载至 OpenLayers 的 map 中:</ p >
209216 < pre class ="javascript "> < code > var map = new ol.Map({
210217 target: 'map',
211218 layers: [new ol.layer.Tile({
212- source: new ol.supermap.TileSuperMapRest({
213- url: "http://localhost:8090/iserver/services/map/rest/maps/World"
214- }),
219+ source: new ol.supermap.TileSuperMapRest({
220+ url: "http://localhost:8090/iserver/services/map/rest/maps/World"
221+ }),
215222 })]
216223});</ code > < a href ="../examples/openlayers/editor.html#01_tiledMapLayer4326 " style ="font-size: 10px;float:right "> 查看源码 »</ a > </ pre >
217224 </ div >
@@ -226,7 +233,7 @@ <h1 class='first_title'>快速入门</h1>
226233 </ div >
227234 < div id ="fast-mapboxgljs-content " class ="collapse in ">
228235 < div class ="map " id ="mapboxMap "> </ div >
229- < p style ="margin-top: 19px "> 将 iSevrer 发布的地图加载至 Mapbox GL JS 的 map 中</ p >
236+ < p style ="margin-top: 19px "> 将 iServer 发布的地图加载至 Mapbox GL JS 的 map 中</ p >
230237 < pre class ="javascript "> < code > var map = new mapboxgl.Map({
231238 container: "map",
232239 style: {
@@ -282,7 +289,7 @@ <h1 class="first_title">WHAT'S NEW</h1>
282289 </ div >
283290 < div class ="news-box ">
284291 < p class ="new-attributes_content ">
285- 完成了基础设施重建,完全开源+ 开放,全面对接集成了Leaflet 、OpenLayers、MapboxGL JS、ECharts、MapV等常用的地图库和制图制表库 ,避免用户的重复学习和成本投入
292+ 完成了基础设施重建,完全开源 + 开放,全面对接集成了 Leaflet 、OpenLayers、Mapbox GL JS、ECharts、MapV 等常用的地图库和制图制表库 ,避免用户的重复学习和成本投入
286293 </ p >
287294 </ div >
288295 </ div >
@@ -294,7 +301,7 @@ <h1 class="first_title">WHAT'S NEW</h1>
294301 </ div >
295302 < div class ="news-box ">
296303 < p class ="new-attributes_content ">
297- 支持访问SuperMap iServer 9D 的分布式处理服务,提供核密度分析、格网聚合分析和地图缓存生成功能
304+ 支持访问 SuperMap iServer 9D 的分布式处理服务,提供核密度分析、格网聚合分析和地图缓存生成功能
298305 </ p >
299306 </ div >
300307 </ div >
@@ -306,7 +313,7 @@ <h1 class="first_title">WHAT'S NEW</h1>
306313 </ div >
307314 < div class ="news-box ">
308315 < p class ="new-attributes_content ">
309- 支持访问SuperMap iServer 9D 的地址匹配服务,提供正向匹配和反向匹配功能
316+ 支持访问 SuperMap iServer 9D 的地址匹配服务,提供正向匹配和反向匹配功能
310317 </ p >
311318 </ div >
312319 </ div >
@@ -318,7 +325,7 @@ <h1 class="first_title">WHAT'S NEW</h1>
318325 </ div >
319326 < div class ="news-box ">
320327 < p class ="new-attributes_content ">
321- 支持Mapbox矢量瓦片标准 ,为用户提供了更多可在客户端自由更改样式的地图风格
328+ 支持 Mapbox 矢量瓦片标准 ,为用户提供了更多可在客户端自由更改样式的地图风格
322329 </ p >
323330 </ div >
324331 </ div >
@@ -342,7 +349,7 @@ <h1 class="first_title">WHAT'S NEW</h1>
342349 </ div >
343350 < div class ="news-box ">
344351 < p class ="new-attributes_content ">
345- 集成ECharts常用可视化效果 :散点地图、迁徙图、热力图、线路图、线特效、折线图、柱状图、饼图
352+ 集成 ECharts 常用可视化效果 :散点地图、迁徙图、热力图、线路图、线特效、折线图、柱状图、饼图
346353 </ p >
347354 </ div >
348355 </ div >
@@ -355,7 +362,7 @@ <h1 class="first_title">WHAT'S NEW</h1>
355362 </ div >
356363 < div class ="news-box ">
357364 < p class ="new-attributes_content ">
358- 集成数据可视化开源库MapV ,提供蜂巢图和海量点数据的绘制
365+ 集成数据可视化开源库 MapV ,提供蜂巢图和海量点数据的绘制
359366 </ p >
360367 </ div >
361368 </ div >
@@ -367,7 +374,7 @@ <h1 class="first_title">WHAT'S NEW</h1>
367374 </ div >
368375 < div class ="news-box ">
369376 < p class ="new-attributes_content ">
370- 更简单的访问SuperMap iPortal和SuperMap Online中用户配置的地图
377+ 更简单的访问 SuperMap iPortal 和 SuperMap Online 中用户配置的地图
371378 </ p >
372379 </ div >
373380 </ div >
@@ -379,7 +386,7 @@ <h1 class="first_title">WHAT'S NEW</h1>
379386 </ div >
380387 < div class ="news-box ">
381388 < p class ="new-attributes_content ">
382- 统一SuperMap iServer、SuperMap iPortal、SuperMap Online的安全认证接口 ,支持安全登录,支持以token或key的方式访问服务或地图
389+ 统一 SuperMap iServer、SuperMap iPortal、SuperMap Online 的安全认证接口 ,支持安全登录,支持以 token 或 key 的方式访问服务或地图
383390 </ p >
384391 </ div >
385392 </ div >
0 commit comments