diff --git a/releases/next/docs/geolocation.html b/releases/next/docs/geolocation.html index 87c3736ff32..8ef10d28e7f 100644 --- a/releases/next/docs/geolocation.html +++ b/releases/next/docs/geolocation.html @@ -1,5 +1,6 @@
The Geolocation API follows the web spec: -https://developer.mozilla.org/en-US/docs/Web/API/Geolocation
You need to include the NSLocationWhenInUseUsageDescription key
+https://developer.mozilla.org/en-US/docs/Web/API/Geolocation
As a browser polyfill, this API is available through the navigator.geolocation
+global - you do not need to import it.
You need to include the NSLocationWhenInUseUsageDescription key
in Info.plist to enable geolocation. Geolocation is enabled by default
when you create a project with react-native init.
To request access to location, you need to add the following line to your
app's AndroidManifest.xml:
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
Invokes the success callback once with the latest location info. Supported