implement stop routing

This commit is contained in:
NekoVari 2023-12-07 21:24:23 +07:00
parent eeccb24a92
commit 760d868dc2
2 changed files with 30 additions and 21 deletions

View file

@ -243,7 +243,7 @@ export default {
showRoute: false,
userLocation: null,
isLocationRequested: false,
isRouting: false,
};
},
computed: {
@ -262,6 +262,10 @@ export default {
methods: {
closePopup() {
this.showPopup = false;
this.$emit('updateRouting', {route:null,isRouting:false});
this.isRouting = false;
this.onClose();
},
viewRoute() {
@ -293,6 +297,9 @@ export default {
viewPopup(){
this.showPopup = true;
this.showRoute = false;
this.$emit('updateRouting', {route:null,isRouting:false});
this.isRouting = false;
},
addToFavorites() {
const currentUser = JSON.parse(sessionStorage.getItem('current_user'));
@ -333,6 +340,7 @@ export default {
}
},
Routing(){
if(!this.isRouting){
console.log('Start routing!!');
console.log(`nearestStructureData : ${this.nearestStructureData.lon},${this.nearestStructureData.lat}`);
console.log(`userLocation : ${this.userLocation.lon},${this.userLocation.lat}`);
@ -345,12 +353,13 @@ export default {
.then(response => {
const route = response.data.features[0].geometry.coordinates;
console.log('This is route :',{route:route})
this.$emit('updateRouting', {route:route});
// this.plotRoute(route);
this.$emit('updateRouting', {route:route,isRouting:true});
this.isRouting = true;
})
.catch(error => {
console.error('Error fetching route:', error);
});
}
},
},

View file

@ -189,7 +189,7 @@ const closePopup = () => {
const handleRouting = (res) => {
console.log("Received Route:", res);
route.value = res.route;
isRouting.value = true;
isRouting.value = res.isRouting;
};