Geolocation store
Geolocation values
| Property | default | Description |
|---|---|---|
| geolocation | null | Geolocation object |
Geolocation events
| Event name | Argument | Description |
|---|---|---|
| change | GeolocationState | Called when the geolocation state changes |
| mount | Element | Called when the component is mounted |
| clean | null | Called when the component is removed |
Geolocation state
export interface GeolocationState {
snapshot: [GeolocationState]
geolocation: any
id: number
callback(): void
change(): void
mount(): void
clean(): void
}