forked from cemaden-educacao/WPD-MobileApp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
633 B
25 lines
633 B
import { useEffect, useState } from "react";
|
|
import * as Location from "expo-location";
|
|
|
|
export default useLocation = () => {
|
|
const [location, setLocation] = useState({ longitude: 0.0, latitude: 0.0 });
|
|
|
|
const getLocation = async () => {
|
|
try {
|
|
const { granted } = await Location.requestPermissionsAsync();
|
|
if (!granted) return;
|
|
const {
|
|
coords: { latitude, longitude },
|
|
} = await Location.getLastKnownPositionAsync();
|
|
setLocation({ latitude, longitude });
|
|
} catch (error) {
|
|
console.log(error);
|
|
}
|
|
};
|
|
|
|
useEffect(() => {
|
|
getLocation();
|
|
}, []);
|
|
|
|
return location;
|
|
};
|