From 831ebbdb2e2ea48c6201bbdf2342c1d41407d19d Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Thu, 3 Feb 2022 01:10:57 +0900 Subject: 2021/09/15 時点の英語版に同期 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- files/ja/web/api/geolocation/clearwatch/index.md | 85 +++++++++--------------- 1 file changed, 33 insertions(+), 52 deletions(-) (limited to 'files/ja/web/api') 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 --- -

{{securecontext_header}}{{ APIref("Geolocation API") }}

+{{securecontext_header}}{{ APIref("Geolocation API") }} -

Geolocation.clearWatch()メソッドは、以前 {{domxref("Geolocation.watchPosition()")}} によって登録された位置情報/エラーの監視ハンドラーを解除するために使用します。

+**`Geolocation.clearWatch()`** メソッドは、以前 {{domxref("Geolocation.watchPosition()")}} によって登録された位置情報/エラーの監視ハンドラーを解除するために使用します。 -

構文

+## 構文 -
navigator.geolocation.clearWatch(id);
+```js +navigator.geolocation.clearWatch(id); +``` -

引数

+### 引数 -
-
id
-
解除したいハンドラーの登録時に {{domxref("Geolocation.watchPosition()")}} メソッドから返された ID 番号です。
-
+- `id` + - : 解除したいハンドラーの登録時に {{domxref("Geolocation.watchPosition()")}} メソッドから返された ID 番号です。 -

+## 例 -
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);
-
- -

仕様書

- - - - - - - - - - - - - - - - -
仕様書状態備考
{{SpecName('Geolocation')}}{{Spec2('Geolocation')}}初回定義
- -

ブラウザーの互換性

- -

{{Compat("api.Geolocation.clearWatch")}}

- -

関連情報

- - +``` + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} + +## 関連情報 + +- [位置情報の使用](/ja/docs/Web/API/Geolocation_API/Using_the_Geolocation_API) +- {{domxref("Geolocation")}} +- {{domxref("Geolocation.watchPosition()")}} +- {{domxref("Geolocation.getCurrentPosition()")}} -- cgit v1.2.3-54-g00ecf