diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-02-04 21:42:35 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-02-11 12:20:24 +0900 |
commit | 1cfa7bcf40b80ffa6db1231fc4621a05453d2685 (patch) | |
tree | b9286261e1f8719003fe9a7f73ead55fc7e155f8 /files | |
parent | 58233b3b4b9c4d330e870e6ee40e41054c889eb6 (diff) | |
download | translated-content-1cfa7bcf40b80ffa6db1231fc4621a05453d2685.tar.gz translated-content-1cfa7bcf40b80ffa6db1231fc4621a05453d2685.tar.bz2 translated-content-1cfa7bcf40b80ffa6db1231fc4621a05453d2685.zip |
2022/01/28 時点の英語版に同期
Diffstat (limited to 'files')
-rw-r--r-- | files/ja/web/api/geolocationcoordinates/index.md | 77 |
1 files changed, 29 insertions, 48 deletions
diff --git a/files/ja/web/api/geolocationcoordinates/index.md b/files/ja/web/api/geolocationcoordinates/index.md index d2ce25b85e..3e3d2c6188 100644 --- a/files/ja/web/api/geolocationcoordinates/index.md +++ b/files/ja/web/api/geolocationcoordinates/index.md @@ -3,67 +3,48 @@ title: GeolocationCoordinates slug: Web/API/GeolocationCoordinates tags: - API - - Geolocation API + - 位置情報 API - GeolocationCoordinates - Interface - - Secure context + - 安全なコンテキスト translation_of: Web/API/GeolocationCoordinates --- -<div>{{securecontext_header}}{{APIRef("Geolocation API")}}</div> +{{securecontext_header}}{{APIRef("Geolocation API")}} -<div><strong><code>GeolocationCoordinates</code></strong> インターフェイスは、地球上における端末の位置と高度、およびそれぞれの測位精度を表します。</div> +**`GeolocationCoordinates`** インターフェイスは、地球上における端末の位置と高度、およびそれぞれの測位精度を表します。 -<h2 id="Properties">プロパティ</h2> +## プロパティ -<p><em><code>GeolocationCoordinates</code> インターフェイスが継承するプロパティはありません。</em></p> +_`GeolocationCoordinates` インターフェイスが継承するプロパティはありません。_ -<dl> - <dt>{{domxref("GeolocationCoordinates.latitude")}} {{readonlyInline}} {{securecontext_inline}}</dt> - <dd>この位置の緯度を十進数の角度で表す <code>double</code> 型の値を返します。</dd> - <dt>{{domxref("GeolocationCoordinates.longitude")}} {{readonlyInline}} {{securecontext_inline}}</dt> - <dd>この位置の経度を十進数の角度で表す <code>double</code> 型の値を返します。</dd> - <dt>{{domxref("GeolocationCoordinates.altitude")}} {{readonlyInline}} {{securecontext_inline}}</dt> - <dd>この位置の海面からの相対的な高度をメートル単位で表す <code>double</code> 型の値を返します。実装がこのデータを提供できない場合、この値は <code>null</code> になることがあります。</dd> - <dt>{{domxref("GeolocationCoordinates.accuracy")}} {{readonlyInline}} {{securecontext_inline}}</dt> - <dd><code>latitude</code> および <code>longitude</code> プロパティの精度をメートル単位で表す、<code>double</code> 型の値を返します。</dd> - <dt>{{domxref("GeolocationCoordinates.altitudeAccuracy")}} {{readonlyInline}} {{securecontext_inline}}</dt> - <dd><code>altitude</code> プロパティの精度をメートル単位で表す、<code>double</code> 型の値を返します。このプロパティは <code>null</code> になることがあります。</dd> - <dt>{{domxref("GeolocationCoordinates.heading")}} {{readonlyInline}} {{securecontext_inline}}</dt> - <dd>端末が向かっている方向を表す <code>double</code> 型の値を返します。この値は、端末の向きが真北からどれだけ離れているかを、角度で表します。 <code>0</code> は真北を表し、方向は時計回りに定められます (すなわち、東は <code>90</code> 度、西は <code>270</code> 度です)。 <code>speed</code> が <code>0</code> の場合、 <code>heading</code> は <code><a href="/ja/docs/Web/JavaScript/Reference/Global_Objects/NaN">NaN</a></code> になります。もし <code>heading</code> の情報を取得できない場合は、この値は <code>null</code> になります。</dd> - <dt>{{domxref("GeolocationCoordinates.speed")}} {{readonlyInline}} {{securecontext_inline}}</dt> - <dd>端末の移動速度をメートル毎秒で表す <code>double</code> 型の値を返します。このプロパティは <code>null</code> になることがあります。</dd> -</dl> +- {{domxref("GeolocationCoordinates.latitude")}} {{readonlyInline}} {{securecontext_inline}} + - : この位置の緯度を 10 進数の角度で表す `double` 型の値を返します。 +- {{domxref("GeolocationCoordinates.longitude")}} {{readonlyInline}} {{securecontext_inline}} + - : この位置の経度を 10 進数の角度で表す `double` 型の値を返します。 +- {{domxref("GeolocationCoordinates.altitude")}} {{readonlyInline}} {{securecontext_inline}} + - : この位置の海面からの相対的な高度をメートル単位で表す `double` 型の値を返します。実装がこのデータを提供できない場合、この値は `null` になることがあります。 +- {{domxref("GeolocationCoordinates.accuracy")}} {{readonlyInline}} {{securecontext_inline}} + - : `latitude` および `longitude` プロパティの精度をメートル単位で表す、`double` 型の値を返します。 +- {{domxref("GeolocationCoordinates.altitudeAccuracy")}} {{readonlyInline}} {{securecontext_inline}} + - : `altitude` プロパティの精度をメートル単位で表す、`double` 型の値を返します。このプロパティは `null` になることがあります。 +- {{domxref("GeolocationCoordinates.heading")}} {{readonlyInline}} {{securecontext_inline}} + - : 端末が向かっている方向を表す `double` 型の値を返します。この値は、端末の向きが真北からどれだけ離れているかを、角度で表します。 `0` は真北を表し、方向は時計回りに定められます (すなわち、東は `90` 度、西は `270` 度です)。 `speed` が `0` の場合、 `heading` は [`NaN`](/ja/docs/Web/JavaScript/Reference/Global_Objects/NaN) になります。もし `heading` の情報を取得できない場合は、この値は `null` になります。 +- {{domxref("GeolocationCoordinates.speed")}} {{readonlyInline}} {{securecontext_inline}} + - : 端末の移動速度をメートル毎秒で表す `double` 型の値を返します。このプロパティは `null` になることがあります。 -<h2 id="Methods">メソッド</h2> +## メソッド -<p><em><code>GeolocationCoordinates</code> インターフェイスが実装・継承するメソッドはありません。</em></p> +_`GeolocationCoordinates` インターフェイスが実装・継承するメソッドはありません。_ -<h2 id="Specifications">仕様書</h2> +## 仕様書 -<table class="standard-table"> - <thead> - <tr> - <th scope="col">仕様書</th> - <th scope="col">状態</th> - <th scope="col">備考</th> - </tr> - </thead> - <tbody> - <tr> - <td>{{SpecName('Geolocation', '#coordinates_interface', 'GeolocationCoordinates')}}</td> - <td>{{Spec2('Geolocation')}}</td> - <td>初回定義</td> - </tr> - </tbody> -</table> +{{Specifications}} -<h2 id="Browser_compatibility">ブラウザーの互換性</h2> +## ブラウザーの互換性 -<p>{{Compat("api.GeolocationCoordinates")}}</p> +{{Compat}} -<h2 id="See_also">関連情報</h2> +## 関連情報 -<ul> - <li><a href="/ja/docs/Web/API/Geolocation_API/Using_the_Geolocation_API">Geolocation API の使用</a></li> - <li>{{domxref("Geolocation")}}</li> -</ul> +- [位置情報 API の使用](/ja/docs/Web/API/Geolocation_API/Using_the_Geolocation_API) +- {{domxref("Geolocation")}} |