diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/geolocationposition | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/ja/web/api/geolocationposition')
-rw-r--r-- | files/ja/web/api/geolocationposition/index.html | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/files/ja/web/api/geolocationposition/index.html b/files/ja/web/api/geolocationposition/index.html new file mode 100644 index 0000000000..34191a49f4 --- /dev/null +++ b/files/ja/web/api/geolocationposition/index.html @@ -0,0 +1,63 @@ +--- +title: GeolocationPosition +slug: Web/API/GeolocationPosition +tags: + - API + - Geolocation API + - Interface + - Position + - Secure context +translation_of: Web/API/GeolocationPosition +--- +<div> +<div>{{securecontext_header}}{{APIRef("Geolocation API")}}</div> +</div> + +<p><strong><code>GeolocationPosition</code></strong> インターフェイスは対象のデバイスのある時間における現在位置を表します。{{domxref("GeolocationCoordinates")}} オブジェクトで表される位置情報には、地球を表す楕円体上における平面座標のほかに、高度や速度といった情報も含まれます。</p> + +<h2 id="Properties" name="Properties">プロパティ</h2> + +<p><em><code>GeolocationPosition</code> </em> <em>インターフェイスが継承するプロパティはありません。</em></p> + +<dl> + <dt>{{domxref("GeolocationPosition.coords")}} {{readonlyInline}} {{securecontext_inline}}</dt> + <dd>現在位置を示す {{domxref("GeolocationCoordinates")}} オブジェクトを返します。</dd> + <dt>{{domxref("GeolocationPosition.timestamp")}} {{readonlyInline}} {{securecontext_inline}}</dt> + <dd>位置情報が取得された時間を表す {{domxref("DOMTimeStamp")}} を返します。</dd> +</dl> + +<h2 id="Methods" name="Methods">メソッド</h2> + +<p><em><code>GeolocationPosition</code> </em> <em>インターフェイスが実装・継承するメソッドはありません。</em></p> + +<h2 id="Specifications" name="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', '#position', 'Position')}}</td> + <td>{{Spec2('Geolocation')}}</td> + <td>初期定義</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザー実装状況</h2> + + + +<p>{{Compat("api.GeolocationPosition")}}</p> + +<h2 id="See_also" name="See_also">関連情報</h2> + +<ul> + <li><a href="https://wiki.developer.mozilla.org/ja/docs/Web/API/Geolocation_API/Using">Geolocation API の利用</a></li> + <li>{{domxref("Geolocation")}} インターフェイス</li> +</ul> |