-
Book Overview & Buying
-
Table Of Contents
React and React Native - Sixth Edition
By :
React Native does not include a built-in Geolocation API. Instead, we use the expo-location package, which provides a consistent location API across iOS and Android. Other than maps, this API is useful for getting precise coordinates from the GPS on mobile devices. You can then use this information to display meaningful location data to the user.
Unfortunately, the data returned by the API is of little use on its own. Your code must do the legwork to transform it into something useful. For example, latitude and longitude don't mean anything to the user, but you can use this data to look up something that is of use to the user. This might be as simple as displaying where the user is currently located.
Let's implement an example that uses the expo-location package to look up coordinates and then use those coordinates to look up human-readable location information using expo-location's built-in reverse geocoding.
Before we start coding, let's...