InterfacePosition

Coordinates along with an accuracy.

MapLayr treats the Position type as though it were immutable.

interface Position {
    accuracy: number;
    coordinates: Coordinates;
}

Properties

accuracy: number

The accuracy of the position, in metres.

The accuracy indicates the maximum distance between the reported position and the true location, within which the system has high confidence.

coordinates: Coordinates

The coordinates of the position.