Commit 7c4ec9667cdc6ee3f9b7913640d2c361aacdaa60

Authored by 郭伟龙
1 parent 27cc8f16
Exists in dev

fix:天地图初始化修改

frontend/front/src/views/pages/enterpriseGasStation/enterpriseGasMap/index.vue
@@ -432,12 +432,12 @@ export default { @@ -432,12 +432,12 @@ export default {
432 // center: this.centerPoint,//初始化地图中心点 432 // center: this.centerPoint,//初始化地图中心点
433 // }); 433 // });
434 // ===========天地图代码============== 434 // ===========天地图代码==============
435 - // if(!this.map){ 435 + if(!this.map){
436 // 防止二次初始化导致拖拽失效 436 // 防止二次初始化导致拖拽失效
437 this.map = new T.Map('mapContainer',{ 437 this.map = new T.Map('mapContainer',{
438 projection: 'EPSG:900913' 438 projection: 'EPSG:900913'
439 }); 439 });
440 - // } 440 + }
441 this.map.centerAndZoom(new T.LngLat(this.centerPoint[0], this.centerPoint[1]), 15); 441 this.map.centerAndZoom(new T.LngLat(this.centerPoint[0], this.centerPoint[1]), 15);
442 //允许鼠标双击放大地图 442 //允许鼠标双击放大地图
443 this.map.enableScrollWheelZoom(); 443 this.map.enableScrollWheelZoom();