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() {
@ -291,8 +295,11 @@ export default {
console.error('Error getting location:', error);
},
viewPopup(){
this.showPopup = true;
this.showRoute = false;
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,24 +340,26 @@ export default {
}
},
Routing(){
console.log('Start routing!!');
console.log(`nearestStructureData : ${this.nearestStructureData.lon},${this.nearestStructureData.lat}`);
console.log(`userLocation : ${this.userLocation.lon},${this.userLocation.lat}`);
// Make a request to OpenRouteService API for a sample route
const apiKey = import.meta.env.VITE_OPENROUTESERVICE_API_KEY;
const startCoord = `${this.userLocation.lon},${this.userLocation.lat}`;//'100.53860,13.76410';
const endCoord = `${this.nearestStructureData.lon},${this.nearestStructureData.lat}`;//'100.53928,13.76526';
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}`);
// Make a request to OpenRouteService API for a sample route
const apiKey = import.meta.env.VITE_OPENROUTESERVICE_API_KEY;
const startCoord = `${this.userLocation.lon},${this.userLocation.lat}`;//'100.53860,13.76410';
const endCoord = `${this.nearestStructureData.lon},${this.nearestStructureData.lat}`;//'100.53928,13.76526';
axios.get(`https://api.openrouteservice.org/v2/directions/wheelchair?api_key=${apiKey}&start=${startCoord}&end=${endCoord}`)
.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);
})
.catch(error => {
console.error('Error fetching route:', error);
});
axios.get(`https://api.openrouteservice.org/v2/directions/wheelchair?api_key=${apiKey}&start=${startCoord}&end=${endCoord}`)
.then(response => {
const route = response.data.features[0].geometry.coordinates;
console.log('This is route :',{route: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;
};