blob: c941b7f9618bbba90a6194c20b79236bb8ce1dc6 (
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
|
---
title: GeolocationPosition
slug: Web/API/GeolocationPosition
tags:
- API
- Geolocation API
- GeolocationPosition
- Interface
- Reference
- Secure context
translation_of: Web/API/GeolocationPosition
---
<div>{{securecontext_header}}{{APIRef("Geolocation API")}}</div>
<p><span class="seoSummary"><strong><code>GeolocationPosition</code></strong> 인터페이스는 주어진 시간에 장치가 위치한 지점을 나타냅니다</span>. 지점은 {{domxref("Coordinates")}} 객체로 표현하여, 지구를 나타내는 회전타원체 위의 2D 위치와 더불어 높이와 속도 정보를 담습니다.</p>
<h2 id="속성">속성</h2>
<p><code>GeolocationPosition</code> 인터페이스는 어떤 속성도 상속하지 않습니다.</p>
<dl>
<dt>{{domxref("Position.coords")}} {{readonlyInline}} {{securecontext_inline}}</dt>
<dd>주어진 시간의 위치를 나타내는 {{domxref("Coordinates")}} 객체입니다.</dd>
<dt>{{domxref("Position.timestamp")}} {{readonlyInline}} {{securecontext_inline}}</dt>
<dd>위치를 기록한 시간을 나타내는 {{domxref("DOMTimeStamp")}}입니다.</dd>
</dl>
<h2 id="메서드">메서드</h2>
<p><code>GeolocationPosition</code> 인터페이스는 어떤 메서드도 상속하거나 구현하지 않습니다.</p>
<h2 id="명세">명세</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('Geolocation', '#position', 'Position')}}</td>
<td>{{Spec2('Geolocation')}}</td>
<td>Initial specification.</td>
</tr>
</tbody>
</table>
<h2 id="브라우저_호환성">브라우저 호환성</h2>
<p>{{Compat("api.GeolocationPosition")}}</p>
<h2 id="같이_보기">같이 보기</h2>
<ul>
<li><a href="/ko/docs/Web/API/Geolocation_API">위치정보 사용하기</a></li>
<li>이 인터페이스를 사용하는 {{domxref("Geolocation")}} 인터페이스.</li>
</ul>
|