The Coordinates interface represents the position and altitude of the device on Earth, as well as the accuracy with which these properties are calculated.
属性
The Coordinates interface doesn't inherit any property.
Coordinates.latitude只读- Returns a
doublerepresenting the position's latitude in decimal degrees. Coordinates.longitude只读- Returns a
doublerepresenting the position's longitude in decimal degrees. Coordinates.altitude只读- Returns a
doublerepresenting the position's altitude in metres, relative to sea level. This value can benullif the implementation cannot provide the data. Coordinates.accuracy只读- Returns a
doublerepresenting the accuracy of thelatitudeandlongitudeproperties, expressed in meters. Coordinates.altitudeAccuracy只读- Returns a
doublerepresenting the accuracy of thealtitudeexpressed in meters. This value can benull. Coordinates.heading只读- Returns a
doublerepresenting the direction in which the device is traveling. This value, specified in degrees, indicates how far off from heading due north the device is.0degrees represents true true north, and the direction is determined clockwise (which means that east is90degrees and west is270degrees). Ifspeedis0,headingisNaN. If the device is unable to provideheadinginformation, this value isnull. Coordinates.speed只读- Returns a
doublerepresenting the velocity of the device in meters per second. This value can benull.
方法
The Coordinates interface neither implements, nor inherits any method.
规范
| Specification | Status | Comment |
|---|---|---|
| Geolocation API Coordinates |
Recommendation | Initial specification. |
浏览器兼容性
| Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
|---|---|---|---|---|---|
| Basic support | 5 | 3.5 (1.9.1) | 9 | 10.60 Removed in 15.0 Reintroduced in 16.0 |
5 |
| Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
|---|---|---|---|---|---|---|
| Basic support | ? | ? | 4.0 (4) | ? | 10.60 | ? |
请参见
- Using geolocation
- The
Geolocationinterface that uses it.