@capacitor/geolocation 7.1.5-dev.3 → 7.1.5-dev.4
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.
|
@@ -216,10 +216,10 @@ private extension GeolocationPlugin {
|
|
|
216
216
|
callbackManager?.sendRequestPermissionsSuccess(Constants.AuthorisationStatus.Status.granted)
|
|
217
217
|
}
|
|
218
218
|
if shouldRequestCurrentPosition {
|
|
219
|
-
locationService?.requestSingleLocation(timeout: self.timeout)
|
|
219
|
+
locationService?.requestSingleLocation(options: IONGLOCRequestOptionsModel(timeout: self.timeout))
|
|
220
220
|
}
|
|
221
221
|
if shouldRequestLocationMonitoring {
|
|
222
|
-
locationService?.startMonitoringLocation(timeout: self.timeout)
|
|
222
|
+
locationService?.startMonitoringLocation(options: IONGLOCRequestOptionsModel(timeout: self.timeout))
|
|
223
223
|
}
|
|
224
224
|
}
|
|
225
225
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capacitor/geolocation",
|
|
3
|
-
"version": "7.1.5-dev.
|
|
3
|
+
"version": "7.1.5-dev.4",
|
|
4
4
|
"description": "The Geolocation API provides simple methods for getting and tracking the current position of the device using GPS, along with altitude, heading, and speed information if available.",
|
|
5
5
|
"main": "dist/plugin.cjs.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|