aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/geolocationcoordinates/altitudeaccuracy/index.md
blob: 218d4959cf80f5fff31a9a1c37d197a4aad24d07 (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
---
title: GeolocationCoordinates.altitudeAccuracy
slug: Web/API/GeolocationCoordinates/altitudeAccuracy
tags:
  - API
  - 位置情報 API
  - GeolocationCoordinates
  - プロパティ
  - 安全なコンテキスト
  - altitudeAccuracy
browser-compat: api.GeolocationCoordinates.altitudeAccuracy
translation_of: Web/API/GeolocationCoordinates/altitudeAccuracy
---
{{securecontext_header}}{{APIRef("Geolocation API")}}

**`GeolocationCoordinates.altitudeAccuracy`** は読み取り専用のプロパティで、厳密な正の `double` 値で、信頼度 95% の `altitude` の精度をメートル単位で表します。実装が高度の計測に対応していない場合、この値は `null` になります。

## 構文

```js
let altAcc = geolocationCoordinatesInstance.altitudeAccuracy
```

### 値

正の `double` 値で、信頼度 95% の `altitude` の精度をメートル単位で表します。

## 仕様書

{{Specifications}}

## ブラウザーの互換性

{{Compat}}

## 関連情報

- [位置情報 API の使用](/ja/docs/Web/API/Geolocation_API/Using_the_Geolocation_API)
- {{domxref("GeolocationCoordinates")}}