docs: document permissions example for geolocation plugin (#2044)

pull/2053/head
Jérôme Bousquié 7 months ago committed by GitHub
parent d402c3865a
commit 5700bd2213
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -92,6 +92,20 @@ fn main() {
}
```
Then, for instance, grant the plugin the permission to check or request permissions from the user and to read the device position
`src-tauri/capabilities/default.json`
```json
"permissions": [
"core:default",
"geolocation:allow-check-permissions",
"geolocation:allow-request-permissions",
"geolocation:allow-get-current-position",
"geolocation:allow-watch-position",
]
```
Afterwards all the plugin's APIs are available through the JavaScript guest bindings:
```javascript

Loading…
Cancel
Save