diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-02-03 01:49:20 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-02-10 22:12:29 +0900 |
commit | 0e6c4298bebd025a4358fe34826798a92804363b (patch) | |
tree | 0e84e8ca5a8d3cad51b567ce3323883d35b86879 /files/ja/web/api/geolocationpositionerror/index.md | |
parent | f83856fd1819cb0df492416a81f14913f3dc140c (diff) | |
download | translated-content-0e6c4298bebd025a4358fe34826798a92804363b.tar.gz translated-content-0e6c4298bebd025a4358fe34826798a92804363b.tar.bz2 translated-content-0e6c4298bebd025a4358fe34826798a92804363b.zip |
GeolocationPositionError インターフェイスの記事を移行
Diffstat (limited to 'files/ja/web/api/geolocationpositionerror/index.md')
-rw-r--r-- | files/ja/web/api/geolocationpositionerror/index.md | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/files/ja/web/api/geolocationpositionerror/index.md b/files/ja/web/api/geolocationpositionerror/index.md new file mode 100644 index 0000000000..10fe4e17d5 --- /dev/null +++ b/files/ja/web/api/geolocationpositionerror/index.md @@ -0,0 +1,84 @@ +--- +title: PositionError +slug: Web/API/GeolocationPositionError +tags: + - API + - Geolocation API + - Interface + - PositionError + - Secure context +translation_of: Web/API/GeolocationPositionError +--- +<div>{{securecontext_header}}{{APIRef("Geolocation API")}}</div> + +<p><strong><code>PositionError</code></strong> インターフェイスは位置情報の取得時に発生したエラーの理由を表します。</p> + +<h2 id="Properties" name="Properties">プロパティ</h2> + +<p><em><code>PositionError</code> インターフェイスが継承するプロパティはありません</em>。</p> + +<dl> + <dt>{{domxref("PositionError.code")}} {{readonlyInline}} {{securecontext_inline}}</dt> + <dd><code>unsigned short</code> 型のエラーコードを返します。エラーコードには以下の値が存在します: + <table class="standard-table"> + <tbody> + <tr> + <th scope="col">値</th> + <th scope="col">定数</th> + <th scope="col">説明</th> + </tr> + <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>少なくともひとつの位置情報ソースが内部的なエラーを返したため、位置情報の取得に失敗しました。</td> + </tr> + <tr> + <td><code>3</code></td> + <td><code>TIMEOUT</code></td> + <td>{{domxref("PositionOptions.timeout")}} によって指定された制限時間内に位置情報を取得することができませんでした。</td> + </tr> + </tbody> + </table> + </dd> + <dt>{{domxref("PositionError.message")}} {{readonlyInline}} {{securecontext_inline}}</dt> + <dd>人間が読める形のエラー詳細を {{domxref("DOMString")}} 型の文字列で返します。この文字列はデバッグ用のものであって直接ユーザーに見せるものではないと、仕様書では言及されています。</dd> +</dl> + +<h2 id="Methods" name="Methods">メソッド</h2> + +<p><em><code>PositionError</code> インターフェイスが実装・継承するメソッドはありません</em>。</p> + +<h2 id="Specifications" name="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', '#position_error_interface', 'PositionError')}}</td> + <td>{{Spec2('Geolocation')}}</td> + <td>初期定義</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザ実装状況</h2> + +<p>{{Compat("api.GeolocationPositionError")}}</p> + +<h2 id="See_also" name="See_also">関連情報</h2> + +<ul> + <li><a href="/ja/docs/WebAPI/Using_geolocation">Geolocation の利用</a></li> + <li>{{domxref("Geolocation")}} インターフェイス</li> +</ul> |