fixed getCurrentLocation
This commit is contained in:
@@ -1,13 +1,25 @@
|
||||
export const locationUtils = {
|
||||
getCurrentLocation: () => {
|
||||
if (navigator.geolocation) {
|
||||
navigator.geolocation.getCurrentPosition(async function(position) {
|
||||
const latitude = position.coords.latitude;
|
||||
const longitude = position.coords.longitude;
|
||||
return {lon: longitude, lat: latitude};
|
||||
});
|
||||
} else {
|
||||
return {lon: null, lat: null};
|
||||
}
|
||||
async getCurrentLocation () {
|
||||
let location = await this.returnCurrentLocation().catch((error) => {
|
||||
console.error('Error getting current location', error);
|
||||
});
|
||||
return {lon: location.longitude, lat: location.latitude};
|
||||
},
|
||||
async returnCurrentLocation() {
|
||||
return new Promise((resolve, reject) => {
|
||||
if (navigator.geolocation) {
|
||||
navigator.geolocation.getCurrentPosition(
|
||||
(position) => {
|
||||
const { latitude, longitude } = position.coords;
|
||||
resolve({ latitude, longitude });
|
||||
},
|
||||
(error) => {
|
||||
reject(error);
|
||||
}
|
||||
);
|
||||
} else {
|
||||
reject(new Error('Geolocation is not supported by this browser.'));
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user