keolis-services
Version:
Keolis services includes Microphone, Location, Voice Activity Detector, Heart rate through web bluetooth API, text to speech, stop watch with our own cloud.
15 lines • 549 B
JavaScript
export async function getLocation() {
return new Promise((resolve, reject) => {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function(position) {
resolve({
latitude: position.coords.latitude,
longitude: position.coords.longitude,
speed: position.coords.speed ? (position.coords.speed * 3.6) + 'Km/H' : '0Km/H'
});
});
} else {
resolve(false);
}
});
}