e25_arcgis_wfs.html 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. <!-- 2017-12-4 14:24:12 | 修改 木遥(微信: http://marsgis.cn/weixin.html ) -->
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6. <meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=0,minimum-scale=1.0,maximum-scale=1.0" />
  7. <meta name="apple-touch-fullscreen" content="yes" />
  8. <meta name="apple-mobile-web-app-capable" content="yes" />
  9. <meta name="apple-mobile-web-app-status-bar-style" content="black" />
  10. <meta name="format-detection" content="telephone=no" />
  11. <meta name="x5-fullscreen" content="true" />
  12. <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1" />
  13. <!-- 标题及搜索关键字 -->
  14. <meta name="keywords" content="火星科技,cesium,3D,GIS,marsgis,三维,地球,地图,开发,框架,系统,示例,资料,模型,离线,外包,合肥,安徽,中国" />
  15. <meta
  16. name="description"
  17. content="火星科技 合肥火星 合肥火星科技 合肥火星科技有限公司 leaflet leaflet框架 leaflet开发 cesium cesium开发 cesium框架 三维 地球 模型 gis marsgis 地图离线 地图开发 地图框架 地图外包 框架 开发 外包 地图离线 二维地图 三维地图 全景漫游 地理信息系统 云GIS 三维GIS GIS平台 WebGIS"
  18. />
  19. <link rel="shortcut icon" type="image/x-icon" href="" />
  20. <title>ArcGIS WFS图层 </title>
  21. <script
  22. type="text/javascript"
  23. src="../lib/include-lib.js"
  24. libpath="../lib/"
  25. include="jquery,font-awesome,bootstrap,layer,haoutil,turf,mars3d"
  26. ></script>
  27. <link href="css/style.css" rel="stylesheet" />
  28. </head>
  29. <body class="dark">
  30. <!--加载前进行操作提示,优化用户体验-->
  31. <div id="mask" class="signmask" onclick="removeMask()"></div>
  32. <div id="mars3dContainer" class="mars3d-container"></div>
  33. <script src="./js/common.js"></script>
  34. <script type="text/javascript">
  35. "use script"; //开发环境建议开启严格模式
  36. var map;
  37. function initMap(options) {
  38. //合并属性参数,可覆盖config.json中的对应配置
  39. var mapOptions = mars3d.Util.merge(options, {
  40. scene: {
  41. center: { lat: 31.810597, lng: 117.220617, alt: 1038, heading: 13, pitch: -30 },
  42. },
  43. //方式1:在创建地球前的参数中配置
  44. layers: [
  45. {
  46. name: "兴趣点",
  47. type: "arcgis_wfs",
  48. url: "//server.mars3d.cn/arcgis/rest/services/mars/hefei/MapServer/1",
  49. where: " 1=1 ",
  50. minimumLevel: 16,
  51. symbol: {
  52. type: "billboardP",
  53. styleOptions: {
  54. image: "img/marker/mark3.png",
  55. scale: 0.7,
  56. verticalOrigin: Cesium.VerticalOrigin.BOTTOM,
  57. clampToGround: true,
  58. label: {
  59. text: "{NAME}",
  60. font_size: 15,
  61. color: "#ffffff",
  62. outline: true,
  63. outlineColor: "#000000",
  64. pixelOffsetY: -30,
  65. distanceDisplayCondition: true,
  66. distanceDisplayCondition_far: 1500,
  67. distanceDisplayCondition_near: 0,
  68. },
  69. },
  70. },
  71. popup: "名称:{NAME}<br />地址:{address}",
  72. show: true,
  73. },
  74. ],
  75. });
  76. delete mapOptions.terrain;
  77. //创建三维地球场景
  78. map = new mars3d.Map("mars3dContainer", mapOptions);
  79. map.basemap = 2017; //蓝色底图
  80. //添加演示图层
  81. addArcGisWFSLayer1();
  82. addArcGisWFSLayer2();
  83. }
  84. //方式2:在创建地球后调用addLayer添加图层(直接new对应type类型的图层类)
  85. function addArcGisWFSLayer1() {
  86. var changeLevel = 15;
  87. //瓦片图,对比参考用
  88. var tileLayer = new mars3d.layer.ArcGisLayer({
  89. name: "瓦片图层",
  90. url: "//server.mars3d.cn/arcgis/rest/services/mars/hefei/MapServer",
  91. layers: "37",
  92. popup: "数据:瓦片图层<br />名称:{NAME}<br />层数:{floor}",
  93. maximumLevel: changeLevel - 1,
  94. maximumTerrainLevel: changeLevel - 1,
  95. });
  96. map.addLayer(tileLayer);
  97. //动态矢量图
  98. var wfsLayer = new mars3d.layer.ArcGisWfsLayer({
  99. name: "建筑物面矢量图层",
  100. url: "//server.mars3d.cn/arcgis/rest/services/mars/hefei/MapServer/37",
  101. where: " NAME like '%合肥%' ",
  102. minimumLevel: changeLevel,
  103. symbol: {
  104. type: "polygonP",
  105. styleOptions: {
  106. color: "#FED976",
  107. outline: false,
  108. opacity: 1,
  109. },
  110. },
  111. buildings: {
  112. cloumn: "floor",
  113. },
  114. debuggerTileInfo: false,
  115. popup: "数据:矢量图层<br />名称:{NAME}<br />层数:{floor}",
  116. });
  117. map.addLayer(wfsLayer);
  118. //绑定事件
  119. wfsLayer.on(mars3d.EventType.loadConfig, function (event) {
  120. console.log("加载完成服务信息", event);
  121. });
  122. wfsLayer.on(mars3d.EventType.click, function (event) {
  123. console.log("单击了图层", event);
  124. });
  125. window.wfsLayer = wfsLayer;
  126. setTimeout(function () {
  127. //测试更换条件
  128. wfsLayer.setWhere(" 1=1 ");
  129. }, 10000);
  130. }
  131. //适合少于1000条的少量数据,一次性请求加载
  132. function addArcGisWFSLayer2() {
  133. //一次性加载的wfs图层
  134. var wfsLayer = new mars3d.layer.ArcGisWfsSingleLayer({
  135. name: "合肥边界线",
  136. url: "//server.mars3d.cn/arcgis/rest/services/mars/hefei/MapServer/41",
  137. symbol: {
  138. type: "polyline",
  139. styleOptions: {
  140. color: "#39E09B",
  141. width: 8,
  142. opacity: 0.8,
  143. },
  144. },
  145. popup: "all",
  146. });
  147. map.addLayer(wfsLayer);
  148. }
  149. </script>
  150. </body>
  151. </html>