01-01-2018 05:29
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post

01-01-2018 05:29
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post
I’m keen to get access to altitude information, I see the demo app using the barometer, how accurate is that? I believe the ionic has an altimeter, is there access to this or can you get from gps data? Keen to use this for topo maps in Rogains / orienteering.

01-02-2018 06:35
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post

SunsetRunner
01-02-2018 06:35
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post
- Who Voted for this post?
You will find the reference below:
Which states: readonly altitude
number or null
Height of the position, specified in meters above the WGS84 ellipsoid.
If the device cannot provide altitude information, the value is null.
readonly altitudeAccuracy
number or null
Accuracy of the altitude attribute, in meters.
If the device cannot provide altitude information, the value of this attribute is null.
import { geolocation } from "geolocation";
var watchID = geolocation.watchPosition(locationSuccess, locationError);
function locationSuccess(position) {
console.log(position.coords.altitude);
}
function locationError(error) {
console.log("Error: " + error.code,
"Message: " + error.message);
}
The above should give you a good start.
01-09-2018 03:24
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post

01-09-2018 03:24
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post
Thanks for the reply, I will take a look soon.

