diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-02-03 01:58:29 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-02-10 22:12:29 +0900 |
commit | 142757848c626fb5fb20ef4d9125d170990ed32f (patch) | |
tree | 84616b253bfd6261c9752774c148dce7779e6a26 /files/ja/web/api | |
parent | f2e0ac69fe16d8f2e5a9c2ced6913bd94cce5871 (diff) | |
download | translated-content-142757848c626fb5fb20ef4d9125d170990ed32f.tar.gz translated-content-142757848c626fb5fb20ef4d9125d170990ed32f.tar.bz2 translated-content-142757848c626fb5fb20ef4d9125d170990ed32f.zip |
2021/10/11 時点の英語版に同期
Diffstat (limited to 'files/ja/web/api')
-rw-r--r-- | files/ja/web/api/geolocationpositionerror/code/index.md | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/files/ja/web/api/geolocationpositionerror/code/index.md b/files/ja/web/api/geolocationpositionerror/code/index.md new file mode 100644 index 0000000000..50eceef351 --- /dev/null +++ b/files/ja/web/api/geolocationpositionerror/code/index.md @@ -0,0 +1,62 @@ +--- +title: GeolocationPositionError.code +slug: Web/API/GeolocationPositionError/code +tags: + - API + - Code + - 位置情報 API + - GeolocationPositionError + - プロパティ + - 安全なコンテキスト +browser-compat: api.GeolocationPositionError.code +translation_of: Web/API/GeolocationPositionError/code +--- +{{securecontext_header}}{{APIRef("Geolocation API")}} + +**`GeolocationPositionError.code`** は読み取り専用プロパティで、 `unsigned short` でエラーコードを表します。 + +以下の値になる可能性があります。 + +<table class="no-markdown"> + <thead> + <tr> + <th scope="col">値</th> + <th scope="col">関連づけられた定数</th> + <th scope="col">説明</th> + </tr> + </thead> + <tbody> + <tr> + <td><code>1</code></td> + <td><code>PERMISSION_DENIED</code></td> + <td> + ページが許可を得ていないために、位置情報の取得に失敗しました。 + </td> + </tr> + <tr> + <td><code>2</code></td> + <td><code>POSITION_UNAVAILABLE</code></td> + <td> + 1 つまたは複数の位置の内部ソースが内部エラーを返したために、位置情報の取得に失敗しました。 + </td> + </tr> + <tr> + <td><code>3</code></td> + <td><code>TIMEOUT</code></td> + <td>位置情報が制限時間内に取得できませんでした。</td> + </tr> + </tbody> +</table> + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} + +## 関連情報 + +- [位置情報の使用](/ja/docs/Web/API/Geolocation_API/Using_the_Geolocation_API) +- {{domxref("GeolocationPositionError")}} |