aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/geolocationcoordinates/heading
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2022-02-03 09:51:47 +0900
committerMasahiro FUJIMOTO <mfujimot@gmail.com>2022-02-11 12:20:24 +0900
commitfebc362abf2ea4dc4bd87ca2a52b09d23236ab83 (patch)
tree7013090e812d2ed1d7d8be3b054df0bb12242a46 /files/ja/web/api/geolocationcoordinates/heading
parent06b94850b67aaa130c5328cbd83d0aa851a52495 (diff)
downloadtranslated-content-febc362abf2ea4dc4bd87ca2a52b09d23236ab83.tar.gz
translated-content-febc362abf2ea4dc4bd87ca2a52b09d23236ab83.tar.bz2
translated-content-febc362abf2ea4dc4bd87ca2a52b09d23236ab83.zip
GeolocationCoordinates 以下を移行
Diffstat (limited to 'files/ja/web/api/geolocationcoordinates/heading')
-rw-r--r--files/ja/web/api/geolocationcoordinates/heading/index.md46
1 files changed, 46 insertions, 0 deletions
diff --git a/files/ja/web/api/geolocationcoordinates/heading/index.md b/files/ja/web/api/geolocationcoordinates/heading/index.md
new file mode 100644
index 0000000000..252073fbe3
--- /dev/null
+++ b/files/ja/web/api/geolocationcoordinates/heading/index.md
@@ -0,0 +1,46 @@
+---
+title: GeolocationCoordinates.heading
+slug: Web/API/GeolocationCoordinates/heading
+tags:
+ - API
+ - Geolocation API
+ - GeolocationCoordinates
+ - Property
+ - Secure context
+ - heading
+browser-compat: api.GeolocationCoordinates.heading
+---
+{{securecontext_header}}{{APIRef("Geolocation API")}}
+
+The **`GeolocationCoordinates.heading`** read-only property is
+a `double` representing the direction in which the device is traveling. This
+value, specified in degrees, indicates how far off from heading due north the device is.
+`Zero` degrees represents true north, and the direction is determined
+clockwise (which means that east is `90` degrees and west is `270`
+degrees). If {{domxref("GeolocationCoordinates.speed")}} is `0`,
+`heading` is
+[`NaN`](/en-US/docs/Web/JavaScript/Reference/Global_Objects/NaN). If
+the device is not able to provide heading information, this value is `null`.
+
+## Syntax
+
+```js
+let heading = geolocationCoordinatesInstance.heading
+```
+
+### Value
+
+A `double` representing the direction in which the device is traveling.
+
+## Specifications
+
+{{Specifications}}
+
+## Browser compatibility
+
+{{Compat}}
+
+## See also
+
+- [Using the Geolocation API](/en-US/docs/Web/API/Geolocation_API/Using_the_Geolocation_API)
+- {{domxref("GeolocationCoordinates")}}