openlayers地圖覆蓋物overlay常用用法-popup彈窗
阿新 • • 發佈:2021-10-28
<!--OpenLayers--> <template> <div class="OpenLayers_container"> <div id="LBTmap" class="lbtolmap"> </div> <div id="popup" class="info_popup"> {{popupInfo.jqxx_name}} <br> {{popupInfo.jqxx_xx}} </div> </div> </template> <script> //這裡可以匯入其他檔案(比如:元件,工具js,第三方外掛js,json檔案,圖片檔案等等) //例如:import《元件名稱》from'《元件路徑》'; import axios from 'axios' export default { //import引入的元件需要注入到物件中才能使用 components: {}, props:{ }, data() { //這裡存放資料 return { popupInfo:{},//彈窗資訊 popupOverlay:null,//彈窗 }; }, //監聽屬性類似於data概念 computed: {},//監控data中的資料變化 watch: {}, //方法集合 methods: { // 初始化單擊選擇 initSelect(){ var LBTselect, LBTinitSelect = [ { layer: LBTvectorlayerblankpolygon, style: LBTstyleAploygon_S } ]; LBTselect = LBTglobe.clickSelect(LBTinitSelect); var _this=thisLBTselect.on('select', function(e) { LBTglobe.selectStyle(e.selected[0]); if (e.selected.length > 0) { let centerCoord= ol.extent.getCenter(e.selected[0].getGeometry().getExtent())//獲取選擇面的中心點 _this.addMarker(e.selected[0].j,centerCoord) } else { console.log("沒有選中要素..."); _this.popupOverlay.setPosition(undefined) } }); }, // 新增資訊彈窗 addMarker(info,coord) { this.popupInfo=info this.popupOverlay = new ol.Overlay({ position: coord,//投影座標 element: document.getElementById("popup"), positioning: "center-center", stopEvent: false, insertFirst:false,
autoPan: true, // 定義彈出視窗在邊緣點選時候可能不完整 設定自動平移效果
autoPanAnimation: {
duration: 250 //自動平移效果的動畫時間 9毫秒)
}
}); LBTmap.addOverlay(this.popupOverlay); }, }, //生命週期-建立完成(可以訪問當前this例項) created() {}, //生命週期-掛載完成(可以訪問DOM元素) mounted() { /* 定義地球 */ window.LBTglobe = new LBTGSglobe('LBTmap', LBTview, LBTstart); window.LBTmap = LBTglobe.map; /* 增加影像圖層 */ var LBTtilelayercn = LBTglobe.addTileLayer(LBTlayerCnTile, true); var LBTtilelayerhn = LBTglobe.addTileLayer(LBTlayerHnTile, true); /* 增加向量圖層 */ window.LBTvectorlayerblankpolygon = LBTglobe.addVectorLayer(LBTlayerBlankVectorpolygon, true); axios.get(configBase.mapUrl.geojsonTcqy).then(res=>{ // /* // 增加面feature到圖層LBTvectorlayerblank // */ var LBT_featuresgon = []; var LBT_featureName=[] res.data.features.forEach(item => { item.geometry.coordinates[0].forEach((item1,index)=>{ item1.forEach((item2,index2)=>{ item.geometry.coordinates[0][index][index2]=LBTglobe.toLonLat([item2[0],item2[1]]) }) }) // 地塊面feature let LBTfeatureInfogon = { geometry: LBTglobe.newGeometry('Polygon', item.geometry.coordinates[0]), jqxx_name:item.properties.NAME, jqxx_Jname:item.properties.ANAME, jqxx_pano:item.properties.PANOADD, jqxx_mj:item.properties.TAREA, jqxx_xx:item.properties.資訊, jqxx_x:item.properties.Shape_Leng, jqxx_y:item.properties.Shape_Area, }; LBT_featuresgon.push(LBTglobe.newFeature(LBTfeatureInfogon)); }); LBTglobe.addFeatures(LBTvectorlayerblankpolygon, LBT_featuresgon); }) this.initSelect() }, beforeCreate() {}, //生命週期-建立之前 beforeMount() {}, //生命週期-掛載之前 beforeUpdate() {}, //生命週期-更新之前 updated() {}, //生命週期-更新之後 beforeDestroy() {}, //生命週期-銷燬之前 destroyed() {}, //生命週期-銷燬完成 activated() {}, //如果頁面有keep-alive快取功能,這個函式會觸發 }; </script> <style lang='scss' scoped> .OpenLayers_container{ width: 100%; height: 100%; } .lbtolmap{ width: 100%; height: 100%; } .check_box{ width: 100px; height: 50px; background: blue; position: absolute; bottom: 10px; right: 10px; z-index: 5; cursor: pointer; } .info_popup{ width: 200px; padding:10px 20px; position: absolute; background: #fff; border-radius: 5px; font-size: 12px; } </style>道阻且長,行則將至!