摘要: ol之要素查询 要素查询可以直接从geoserver上的矢量数据服务中查询符合条件的要素。 代码: let featureRequest = new ol.format.WFS().writeGetFeature({ srsName: 'EPSG:3857', featureNS: 'gistone 阅读全文
posted @ 2020-04-22 19:34 莫小龙 阅读(506) 评论(0) 推荐(0) 编辑
摘要: ol之弹窗 openlayers的弹窗主要通过 Overlay 添加。 1.首先需要创建弹框dom: <div id="popup" ref="popup" class="ol-popup"> <a href="#" ref="popup-closer" class="ol-popup-closer 阅读全文
posted @ 2020-04-22 19:23 莫小龙 阅读(431) 评论(0) 推荐(0) 编辑
摘要: ol之天地图加载 天地图的添加使用XYZ的方式添加。代码如下 // 加载天地图图层 addTdtLayer (type) { let layer = new ol.layer.Tile({ source: new ol.source.XYZ({ url: 'http://t' + Math.roun 阅读全文
posted @ 2020-04-22 19:11 莫小龙 阅读(828) 评论(0) 推荐(0) 编辑
摘要: ol之地图定位 1.通过extent定位 let extent = vectorSource.getExtent() this.view.fit(extent) 2.通过点、zoom定位 this.view.setZoom(_zoomLevel); this.view.setCenter(ol.ex 阅读全文
posted @ 2020-04-22 19:07 莫小龙 阅读(1043) 评论(0) 推荐(0) 编辑