blob: d2ce25b85e30eaab06e778c27ae8aecf1f0b0350 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
---
title: GeolocationCoordinates
slug: Web/API/GeolocationCoordinates
tags:
- API
- Geolocation API
- GeolocationCoordinates
- Interface
- Secure context
translation_of: Web/API/GeolocationCoordinates
---
<div>{{securecontext_header}}{{APIRef("Geolocation API")}}</div>
<div><strong><code>GeolocationCoordinates</code></strong> インターフェイスは、地球上における端末の位置と高度、およびそれぞれの測位精度を表します。</div>
<h2 id="Properties">プロパティ</h2>
<p><em><code>GeolocationCoordinates</code> インターフェイスが継承するプロパティはありません。</em></p>
<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>
<h2 id="Methods">メソッド</h2>
<p><em><code>GeolocationCoordinates</code> インターフェイスが実装・継承するメソッドはありません。</em></p>
<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>
<h2 id="Browser_compatibility">ブラウザーの互換性</h2>
<p>{{Compat("api.GeolocationCoordinates")}}</p>
<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>
|