@capgo/nativegeocoder 7.3.10 → 7.3.11
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.
package/README.md
CHANGED
|
@@ -52,7 +52,7 @@ This API requires a Google API key to be set in the `apiKey` field of the `Forwa
|
|
|
52
52
|
|
|
53
53
|
There is no way to use this plugin on the web without a Google API key.
|
|
54
54
|
|
|
55
|
-
The return data is limited to the data available from the native API on the device, as
|
|
55
|
+
The return data is limited to the data available from the native API on the device, as example `formatted_address` is not available in web implementation, as it's not available in the native API.
|
|
56
56
|
|
|
57
57
|
## API
|
|
58
58
|
|
|
@@ -9,7 +9,7 @@ import com.getcapacitor.annotation.CapacitorPlugin;
|
|
|
9
9
|
@CapacitorPlugin(name = "NativeGeocoder")
|
|
10
10
|
public class NativeGeocoderPlugin extends Plugin {
|
|
11
11
|
|
|
12
|
-
private final String pluginVersion = "7.3.
|
|
12
|
+
private final String pluginVersion = "7.3.11";
|
|
13
13
|
|
|
14
14
|
private NativeGeocoder implementation = new NativeGeocoder();
|
|
15
15
|
|
|
@@ -7,7 +7,7 @@ import Capacitor
|
|
|
7
7
|
*/
|
|
8
8
|
@objc(NativeGeocoderPlugin)
|
|
9
9
|
public class NativeGeocoderPlugin: CAPPlugin, CAPBridgedPlugin {
|
|
10
|
-
private let pluginVersion: String = "7.3.
|
|
10
|
+
private let pluginVersion: String = "7.3.11"
|
|
11
11
|
public let identifier = "NativeGeocoderPlugin"
|
|
12
12
|
public let jsName = "NativeGeocoder"
|
|
13
13
|
public let pluginMethods: [CAPPluginMethod] = [
|