Interface GeolocationPositionError

    interface GeolocationPositionError {
        code: number;
        message: string;
        PERMISSION_DENIED: 1;
        POSITION_UNAVAILABLE: 2;
        TIMEOUT: 3;
    }

    Properties

    code: number
    message: string
    PERMISSION_DENIED: 1
    POSITION_UNAVAILABLE: 2
    TIMEOUT: 3