aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/geolocationcoordinates/accuracy
diff options
context:
space:
mode:
Diffstat (limited to 'files/ja/web/api/geolocationcoordinates/accuracy')
-rw-r--r--files/ja/web/api/geolocationcoordinates/accuracy/index.md43
1 files changed, 43 insertions, 0 deletions
diff --git a/files/ja/web/api/geolocationcoordinates/accuracy/index.md b/files/ja/web/api/geolocationcoordinates/accuracy/index.md
new file mode 100644
index 0000000000..f7f0677224
--- /dev/null
+++ b/files/ja/web/api/geolocationcoordinates/accuracy/index.md
@@ -0,0 +1,43 @@
+---
+title: GeolocationCoordinates.accuracy
+slug: Web/API/GeolocationCoordinates/accuracy
+tags:
+ - API
+ - Geolocation API
+ - GeolocationCoordinates
+ - Property
+ - Secure context
+ - accuracy
+browser-compat: api.GeolocationCoordinates.accuracy
+---
+{{securecontext_header}}{{APIRef("Geolocation API")}}
+
+The **`GeolocationCoordinates.accuracy`** read-only property is
+a strictly positive `double` representing the accuracy, with a 95% confidence
+level, of the {{domxref("GeolocationCoordinates.latitude")}} and
+{{domxref("GeolocationCoordinates.longitude")}} properties expressed in meters.
+
+## Syntax
+
+```js
+let acc = geolocationCoordinatesInstance.accuracy
+```
+
+### Value
+
+A positive `double` representing the accuracy, with a 95% confidence level,
+of the {{domxref("GeolocationCoordinates.latitude")}} and
+{{domxref("GeolocationCoordinates.longitude")}} properties expressed in meters.
+
+## Specifications
+
+{{Specifications}}
+
+## Browser compatibility
+
+{{Compat}}
+
+## See also
+
+- [Using the Geolocation API](/en-US/docs/Web/API/Geolocation_API/Using_the_Geolocation_API)
+- {{domxref("GeolocationCoordinates")}}