Definition
Geolocation defines GeolocationPositionError
[Exposed=Window]
interface GeolocationPositionError {
const unsigned short PERMISSION_DENIED = 1;
const unsigned short POSITION_UNAVAILABLE = 2;
const unsigned short TIMEOUT = 3;
readonly attribute unsigned short code;
readonly attribute DOMString message;
};
Methods and attributes that return objects implementing GeolocationPositionError
Referring IDL interfaces/dictionaries
Referring specifications
- The HTML Permission Elements refers to
GeolocationPositionError