class

DomCoord

@Js
const class DomCoord : Obj

DomCoord models a DOM Coordinate object.

methods toStr

altitude

Returns a float representing the position's altitude in meters, relative to sea level

lng

Returns a float representing the position's longitude in decimal degrees

heading

Returns a float representing the direction in which the device is traveling

accuracy

Returns a float representing the accuracy of the latitude and longitude properties, expressed in meters

altitudeAccuracy

Returns a float representing the accuracy of the altitude expressed in meters

lat

Returns a float representing the position's latitude in decimal degrees

speed

Returns a double representing the velocity of the device in meters per second

ts

Optional timestamp of when this location was retrieved

accuracy Float accuracy()

Returns a float representing the accuracy of the latitude and longitude properties, expressed in meters.

altitude Float? altitude()

Returns a float representing the position's altitude in meters, relative to sea level. This value can be null if the implementation cannot provide the data.

altitudeAccuracy Float? altitudeAccuracy()

Returns a float representing the accuracy of the altitude expressed in meters. This value can be null.

heading Float? heading()

Returns a float representing the direction in which the device is traveling. This value, specified in degrees, indicates how far off from heading true north the device is. 0 degrees represents true north, and the direction is determined clockwise (which means that east is 90 degrees and west is 270 degrees). If speed is 0, heading is NaN. If the device is unable to provide heading information, this value is null.

lat Float lat()

Returns a float representing the position's latitude in decimal degrees.

lng Float lng()

Returns a float representing the position's longitude in decimal degrees.

speed Float? speed()

Returns a double representing the velocity of the device in meters per second. This value can be null.

toStr virtual Str toStr()

ts Duration? ts()

Optional timestamp of when this location was retrieved.

Haxall 4.0.5 ∙ 24-Feb-2026 14:33 EST