{{t 'Geolocation Status'}}


{{#if app_requires_geolocation}}

{{t 'LastPosition'}}

{{#if app_geolocation.last_position}}
{{t 'Timestamp' }} {{unixToDate app_geolocation.last_position.timestamp }}
Latitude {{ app_geolocation.last_position.coords.latitude }}
Longitude {{ app_geolocation.last_position.coords.longitude }}
Accuracy {{ app_geolocation.last_position.coords.accuracy }}
Altitude {{ app_geolocation.last_position.coords.altitude }}
Altitude accuracy {{ app_geolocation.last_position.coords.altitudeAccuracy }}
{{t 'Heading'}} {{ app_geolocation.last_position.coords.heading }}
{{t 'Speed'}} {{ app_geolocation.last_position.coords.speed }}
{{ else }} {{#if app_geolocation.last_error}}
{{#ifequal app_geolocation.last_error.code 1}} {{t 'GeolocationPermissionDeniedError'}} {{ else }} {{#ifequal app_geolocation.last_error.code 2}} {{t 'GeolocationPositionUnavailableError'}} {{ else }} {{#ifequal app_geolocation.last_error.code 3}} {{t 'GeolocationTimeoutError'}} {{ else }} {{t 'GeolocationUnknownError'}} {{/ifequal}} {{/ifequal}} {{/ifequal}}
{{ app_geolocation.last_error.message }}
{{ else }}
{{t 'NoPositionYet'}}
{{/if}} {{/if}}
{{ else }}
{{t 'ThisAppDoesNotUseGeolocation'}}
{{/if}}