@capgo/nativegeocoder 6.0.56 → 6.0.58

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +9 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -29,6 +29,7 @@ Apple requires privacy descriptions to be specified in `Info.plist` for location
29
29
  - `NSLocationWhenInUseUsageDescription` (`Privacy - Location When In Use Usage Description`)
30
30
 
31
31
  Read about [Configuring `Info.plist`](https://capacitorjs.com/docs/ios/configuration#configuring-infoplist) in the [iOS Guide](https://capacitorjs.com/docs/ios) for more information on setting iOS permissions in Xcode
32
+ The IOS implementation require internet
32
33
 
33
34
  ## Android
34
35
 
@@ -41,6 +42,14 @@ This API requires the following permissions be added to your `AndroidManifest.xm
41
42
  <uses-feature android:name="android.hardware.location.gps" />
42
43
  ```
43
44
 
45
+ ## Web
46
+
47
+ This API requires a Google API key to be set in the `apiKey` field of the `ForwardOptions` or `ReverseOptions` interfaces.
48
+
49
+ There is no way to use this plugin on the web without a Google API key.
50
+
51
+ The return data is limited to the data available from the native API on the device, as exemple `formatted_address` is not available in web implementation, as it's not available in the native API.
52
+
44
53
  ## API
45
54
 
46
55
  <docgen-index>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/nativegeocoder",
3
- "version": "6.0.56",
3
+ "version": "6.0.58",
4
4
  "description": "Capacitor plugin for native forward and reverse geocoding",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",