diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-02-04 21:37:22 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-02-11 12:20:24 +0900 |
commit | 58233b3b4b9c4d330e870e6ee40e41054c889eb6 (patch) | |
tree | 2a007ee5f84041b867b469a2b4e37f9b195e9c94 /files | |
parent | 1e65d486435f15c2070e5a4ec58e3cf9a422f643 (diff) | |
download | translated-content-58233b3b4b9c4d330e870e6ee40e41054c889eb6.tar.gz translated-content-58233b3b4b9c4d330e870e6ee40e41054c889eb6.tar.bz2 translated-content-58233b3b4b9c4d330e870e6ee40e41054c889eb6.zip |
2022/01/31 時点の英語版に同期
Diffstat (limited to 'files')
-rw-r--r-- | files/ja/web/api/geolocationcoordinates/latitude/index.md | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/files/ja/web/api/geolocationcoordinates/latitude/index.md b/files/ja/web/api/geolocationcoordinates/latitude/index.md index e405b48a38..7a5f7cbe9f 100644 --- a/files/ja/web/api/geolocationcoordinates/latitude/index.md +++ b/files/ja/web/api/geolocationcoordinates/latitude/index.md @@ -3,36 +3,37 @@ title: GeolocationCoordinates.latitude slug: Web/API/GeolocationCoordinates/latitude tags: - API - - Geolocation API + - 位置情報 API - GeolocationCoordinates - - Property - - Secure context + - プロパティ + - 安全なコンテキスト - latitude browser-compat: api.GeolocationCoordinates.latitude +translation_of: Web/API/GeolocationCoordinates/latitude --- {{securecontext_header}}{{APIRef("Geolocation API")}} -The **`GeolocationCoordinates.latitude`** read-only property is a `double` representing the latitude of the position in decimal degrees. +**`GeolocationCoordinates.latitude`** は読み取り専用のプロパティであり、 `double` 値でその位置の緯度を 10 進形式で表します。 -## Syntax +## 構文 ```js let lat = geolocationCoordinatesInstance.latitude ``` -### Value +### 値 -A `double` representing the latitude of the position in decimal degrees. +`double` 値でその位置の緯度を 10 進形式で表します。 -## Specifications +## 仕様書 {{Specifications}} -## Browser compatibility +## ブラウザーの互換性 {{Compat}} -## See also +## 関連情報 -- [Using the Geolocation API](/en-US/docs/Web/API/Geolocation_API/Using_the_Geolocation_API) +- [位置情報 API の使用](/ja/docs/Web/API/Geolocation_API/Using_the_Geolocation_API) - {{domxref("GeolocationCoordinates")}} |