UNPKG

react-native-weather-api

Version:

Real-time weather information for any location on Earth, including over 200,000 cities.

10 lines (8 loc) 274 B
import Geolocation, { GeolocationResponse, } from '@react-native-community/geolocation'; export async function getLocation(): Promise<GeolocationResponse> { return new Promise((resolve, reject) => { Geolocation.getCurrentPosition(resolve, reject); }); }