diff --git a/src/views/subsystem/display/index.vue b/src/views/subsystem/display/index.vue index 4d07f48..de1bf02 100644 --- a/src/views/subsystem/display/index.vue +++ b/src/views/subsystem/display/index.vue @@ -65,10 +65,10 @@ export default { this.roomInfo.duringTime = response.data.during_time break case 'path_init': - this.cesium.drawRouteByCoordinates(response.data.coordinates) + this.cesium.drawRouteByCoordinates(response.data.points) break case 'path_update': - this.cesium.movePlotByCoordinates(response.data.resourceId, response.data.coordinates) + this.cesium.movePlotByCoordinates(response.data.resourceId, response.data.points) break default: break diff --git a/src/views/subsystem/model/index.vue b/src/views/subsystem/model/index.vue index 181fc95..ab4b818 100644 --- a/src/views/subsystem/model/index.vue +++ b/src/views/subsystem/model/index.vue @@ -328,10 +328,10 @@ export default { this.roomInfo.duringTime = response.data.during_time break case 'path_init': - this.cesium.drawRouteByCoordinates(response.data.coordinates) + this.cesium.drawRouteByCoordinates(response.data.points) break case 'path_update': - this.cesium.movePlotByCoordinates(response.data.resourceId, response.data.coordinates) + this.cesium.movePlotByCoordinates(response.data.resourceId, response.data.points) break default: break diff --git a/src/views/subsystem/scene/index.vue b/src/views/subsystem/scene/index.vue index 30a9c73..3bd3782 100644 --- a/src/views/subsystem/scene/index.vue +++ b/src/views/subsystem/scene/index.vue @@ -310,10 +310,10 @@ export default { this.roomInfo.duringTime = response.data.during_time break case 'path_init': - this.cesium.drawRouteByCoordinates(response.data.coordinates) + this.cesium.drawRouteByCoordinates(response.data.points) break case 'path_update': - this.cesium.movePlotByCoordinates(response.data.resourceId, response.data.coordinates) + this.cesium.movePlotByCoordinates(response.data.resourceId, response.data.points) break default: break