Interface NgxMapLibreGeolocationCoordinates

in typescript 4.1 DOM interface Position and Coordinates renamed to GeolocationPosition GeolocationCoordinates to avoid deprecation angular version < 11.0.0 we declared own Coordinates, Position interface

interface NgxMapLibreGeolocationCoordinates {
    accuracy: number;
    altitude: null | number;
    altitudeAccuracy: null | number;
    heading: null | number;
    latitude: number;
    longitude: number;
    speed: null | number;
}

Properties

accuracy: number
altitude: null | number
altitudeAccuracy: null | number
heading: null | number
latitude: number
longitude: number
speed: null | number