diff --git a/src/components/AiTMap.vue b/src/components/AiTMap.vue index 51400eec..4efc4129 100644 --- a/src/components/AiTMap.vue +++ b/src/components/AiTMap.vue @@ -80,19 +80,29 @@ export default { lng: res.longitude } if (latLng.lat) { - this.mapLib = TMap - this.tmap = new TMap.Map(this.$refs.tmap, { - zoom: 11, - center: new TMap.LatLng(latLng.lat, latLng.lng), - ...this.ops - }) - this.$emit('update:lib', TMap) - this.$emit('update:map', this.tmap) - this.$emit('loaded') - this.areaId && this.getMapArea() + // this.mapLib = TMap + // this.tmap = new TMap.Map(this.$refs.tmap, { + // zoom: 11, + // center: new TMap.LatLng(latLng.lat, latLng.lng), + // ...this.ops + // }) + // this.$emit('update:lib', TMap) + // this.$emit('update:map', this.tmap) + // this.$emit('loaded') + // this.areaId && this.getMapArea() } } }) + this.mapLib = TMap + this.tmap = new TMap.Map(this.$refs.tmap, { + zoom: 11, + // center: new TMap.LatLng(latLng.lat, latLng.lng), + ...this.ops + }) + this.$emit('update:lib', TMap) + this.$emit('update:map', this.tmap) + this.$emit('loaded') + this.areaId && this.getMapArea() } }, fitBounds(latLngList, count = 0) { diff --git a/src/project/saas/AppBuilding/AppBuilding.vue b/src/project/saas/AppBuilding/AppBuilding.vue index 7e4a3768..7a726784 100644 --- a/src/project/saas/AppBuilding/AppBuilding.vue +++ b/src/project/saas/AppBuilding/AppBuilding.vue @@ -1,6 +1,13 @@