|
@@ -1,6 +1,8 @@
|
|
|
//加载地图控件
|
|
|
import CityGis from "@/utils/map/CityGis.Bridge";
|
|
|
let bridge
|
|
|
+let calculateFinish = false
|
|
|
+
|
|
|
export function initBridge(){
|
|
|
bridge = new CityGis.Bridge({
|
|
|
id: "i_map",
|
|
@@ -173,7 +175,7 @@ export function fullExtent(){
|
|
|
/*测距:distance 测面积:area*/
|
|
|
export function calculation(type){
|
|
|
let g_type
|
|
|
- this.calculateFinish = false
|
|
|
+ calculateFinish = false
|
|
|
if(type == "distance"){
|
|
|
g_type = "polyline"
|
|
|
}
|
|
@@ -190,8 +192,8 @@ export function calculation(type){
|
|
|
};
|
|
|
bridge.Invoke(params);
|
|
|
bridge.addEventListener((arg) => {
|
|
|
- if(arg.action == "Calculation" && this.calculateFinish == false){
|
|
|
- this.calculateFinish = true
|
|
|
+ if(arg.action == "Calculation" && calculateFinish == false){
|
|
|
+ calculateFinish = true
|
|
|
alert("测量结果:" + arg.data.result)
|
|
|
}
|
|
|
});
|