diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-02-03 01:10:57 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-02-10 22:12:14 +0900 |
commit | 831ebbdb2e2ea48c6201bbdf2342c1d41407d19d (patch) | |
tree | bd1d6700e31847393616b01df280ba9e93e21c19 /files/ja/web/api | |
parent | 972595697b25aa8cbf631f7653e178891efa40a6 (diff) | |
download | translated-content-831ebbdb2e2ea48c6201bbdf2342c1d41407d19d.tar.gz translated-content-831ebbdb2e2ea48c6201bbdf2342c1d41407d19d.tar.bz2 translated-content-831ebbdb2e2ea48c6201bbdf2342c1d41407d19d.zip |
2021/09/15 時点の英語版に同期
Diffstat (limited to 'files/ja/web/api')
-rw-r--r-- | files/ja/web/api/geolocation/clearwatch/index.md | 85 |
1 files changed, 33 insertions, 52 deletions
diff --git a/files/ja/web/api/geolocation/clearwatch/index.md b/files/ja/web/api/geolocation/clearwatch/index.md index 5ae2a63e7f..bfdadcfcb0 100644 --- a/files/ja/web/api/geolocation/clearwatch/index.md +++ b/files/ja/web/api/geolocation/clearwatch/index.md @@ -4,41 +4,39 @@ slug: Web/API/Geolocation/clearWatch tags: - API - Geolocation - - Geolocation API - - Method - - Reference - - Secure context - - clearWatch + - 位置情報 API - メソッド + - NeedsExample - リファレンス - - 位置情報 - - 位置情報 API - 安全なコンテキスト + - clearWatch +browser-compat: api.Geolocation.clearWatch translation_of: Web/API/Geolocation/clearWatch --- -<p>{{securecontext_header}}{{ APIref("Geolocation API") }}</p> +{{securecontext_header}}{{ APIref("Geolocation API") }} -<p><strong><code>Geolocation.clearWatch()</code></strong>メソッドは、以前 {{domxref("Geolocation.watchPosition()")}} によって登録された位置情報/エラーの監視ハンドラーを解除するために使用します。</p> +**`Geolocation.clearWatch()`** メソッドは、以前 {{domxref("Geolocation.watchPosition()")}} によって登録された位置情報/エラーの監視ハンドラーを解除するために使用します。 -<h2 id="Syntax" name="Syntax">構文</h2> +## 構文 -<pre class="syntaxbox notranslate">navigator.geolocation.clearWatch(<var>id</var>);</pre> +```js +navigator.geolocation.clearWatch(id); +``` -<h3 id="Parameters" name="Parameters">引数</h3> +### 引数 -<dl> - <dt><code><var>id</var></code></dt> - <dd>解除したいハンドラーの登録時に {{domxref("Geolocation.watchPosition()")}} メソッドから返された ID 番号です。</dd> -</dl> +- `id` + - : 解除したいハンドラーの登録時に {{domxref("Geolocation.watchPosition()")}} メソッドから返された ID 番号です。 -<h2 id="Example" name="Example">例</h2> +## 例 -<pre class="brush: js notranslate">var id, target, option; +```js +var id, target, option; function success(pos) { var crd = pos.coords; - if (target.latitude === crd.latitude && target.longitude === crd.longitude) { + if (target.latitude === crd.latitude && target.longitude === crd.longitude) { console.log('Congratulation, you reach the target'); navigator.geolocation.clearWatch(id); } @@ -60,36 +58,19 @@ options = { }; id = navigator.geolocation.watchPosition(success, error, options); -</pre> - -<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')}}</td> - <td>{{Spec2('Geolocation')}}</td> - <td>初回定義</td> - </tr> - </tbody> -</table> - -<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2> - -<p>{{Compat("api.Geolocation.clearWatch")}}</p> - -<h2 id="See_also" name="See_also">関連情報</h2> - -<ul> - <li><a href="/ja/docs/WebAPI/Using_geolocation" title="/ja/docs/WebAPI/Using_geolocation">位置情報の使用</a></li> - <li>{{domxref("Geolocation")}}</li> - <li>{{domxref("Geolocation.watchPosition()")}}</li> - <li>{{domxref("Geolocation.getCurrentPosition()")}}</li> -</ul> +``` + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} + +## 関連情報 + +- [位置情報の使用](/ja/docs/Web/API/Geolocation_API/Using_the_Geolocation_API) +- {{domxref("Geolocation")}} +- {{domxref("Geolocation.watchPosition()")}} +- {{domxref("Geolocation.getCurrentPosition()")}} |