| | |
| | | //点击父级 |
| | | const from = [data.children[0].longitude,data.children[0].latitude, data.children[0].height]; |
| | | const to = [data.longitude,data.latitude, data.height]; |
| | | this.flyToAndLookAt(from, to); |
| | | // this.flyToAndLookAt(from, to); |
| | | } else { |
| | | //点击子级 |
| | | const from = [data.longitude,data.latitude, data.height]; |
| | | const to = [node.parent?.data?.longitude,node.parent?.data?.latitude, node.parent?.data?.height]; |
| | | this.flyToAndLookAt(from, to); |
| | | // this.flyToAndLookAt(from, to); |
| | | } |
| | | this.$refs.initMap.DealVisualCone(data,node) |
| | | }, |