aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/geolocation
diff options
context:
space:
mode:
authorjulieng <julien.gattelier@gmail.com>2021-10-02 17:20:24 +0200
committerSphinxKnight <SphinxKnight@users.noreply.github.com>2021-10-02 17:30:20 +0200
commit1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde (patch)
tree30a56efd3eff3a01bd1611e1840fdbbfacf544a4 /files/fr/web/api/geolocation
parentc05efa8d7ae464235cf83d7c0956e42dc6974103 (diff)
downloadtranslated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.tar.gz
translated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.tar.bz2
translated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.zip
convert content to md
Diffstat (limited to 'files/fr/web/api/geolocation')
-rw-r--r--files/fr/web/api/geolocation/clearwatch/index.md74
-rw-r--r--files/fr/web/api/geolocation/getcurrentposition/index.md87
-rw-r--r--files/fr/web/api/geolocation/index.md63
-rw-r--r--files/fr/web/api/geolocation/watchposition/index.md92
4 files changed, 123 insertions, 193 deletions
diff --git a/files/fr/web/api/geolocation/clearwatch/index.md b/files/fr/web/api/geolocation/clearwatch/index.md
index c4952eb7cf..e3cf88e859 100644
--- a/files/fr/web/api/geolocation/clearwatch/index.md
+++ b/files/fr/web/api/geolocation/clearwatch/index.md
@@ -10,29 +10,28 @@ tags:
- Reference
translation_of: Web/API/Geolocation/clearWatch
---
-<p>{{ APIref("Geolocation API") }}</p>
+{{ APIref("Geolocation API") }}
-<p>La méthode <strong><code>Geolocation.clearWatch()</code></strong> est utilisée pour libérer les ressources de localisation/erreur créées antérieurement en utilisant {{domxref("Geolocation.watchPosition()")}}.</p>
+La méthode **`Geolocation.clearWatch()`** est utilisée pour libérer les ressources de localisation/erreur créées antérieurement en utilisant {{domxref("Geolocation.watchPosition()")}}.
-<h2 id="Syntaxe">Syntaxe</h2>
+## Syntaxe
-<pre class="syntaxbox">navigator.geolocation.clearWatch(<em>id</em>);</pre>
+ navigator.geolocation.clearWatch(id);
-<h3 id="Paramètres">Paramètres</h3>
+### Paramètres
-<dl>
- <dt><em>id</em></dt>
- <dd>Le nombre ID est donné par la méthode qui permet la localisation : {{domxref("Geolocation.watchPosition()")}} ; ressource que vous désirez supprimer.</dd>
-</dl>
+- _id_
+ - : Le nombre ID est donné par la méthode qui permet la localisation : {{domxref("Geolocation.watchPosition()")}} ; ressource que vous désirez supprimer.
-<h2 id="Exemple">Exemple</h2>
+## Exemple
-<pre class="brush: js">var id, target, option;
+```js
+var id, target, option;
function success(pos) {
var crd = pos.coords;
- if (target.latitude === crd.latitude &amp;&amp; target.longitude === crd.longitude) {
+ if (target.latitude === crd.latitude && target.longitude === crd.longitude) {
console.log('Congratulation, you reach the target');
navigator.geolocation.clearWatch(id);
}
@@ -54,36 +53,21 @@ options = {
};
id = navigator.geolocation.watchPosition(success, error, options);
-</pre>
-
-<h2 id="Spécifications">Spécifications</h2>
-
-<table class="standard-table">
- <thead>
- <tr>
- <th scope="col">Spécification</th>
- <th scope="col">Statut</th>
- <th scope="col">Commentaire</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>{{SpecName('Geolocation')}}</td>
- <td>{{Spec2('Geolocation')}}</td>
- <td>Spécification initiale.</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Browser_compatibility">Compatibilité des navigateurs</h2>
-
-<p>{{Compat("api.Geolocation.clearWatch")}}</p>
-
-<h2 id="See_also">Voir aussi</h2>
-
-<ul>
- <li><a href="/fr/docs/Web/API/Using_geolocation">Utiliser geolocation</a></li>
- <li>{{domxref("Geolocation")}}</li>
- <li>{{domxref("Geolocation.watchPosition()")}}</li>
- <li>{{domxref("Geolocation.getCurrentPosition()")}}</li>
-</ul>
+```
+
+## Spécifications
+
+| Spécification | Statut | Commentaire |
+| ------------------------------------ | -------------------------------- | ----------------------- |
+| {{SpecName('Geolocation')}} | {{Spec2('Geolocation')}} | Spécification initiale. |
+
+## Compatibilité des navigateurs
+
+{{Compat("api.Geolocation.clearWatch")}}
+
+## Voir aussi
+
+- [Utiliser geolocation](/fr/docs/Web/API/Using_geolocation)
+- {{domxref("Geolocation")}}
+- {{domxref("Geolocation.watchPosition()")}}
+- {{domxref("Geolocation.getCurrentPosition()")}}
diff --git a/files/fr/web/api/geolocation/getcurrentposition/index.md b/files/fr/web/api/geolocation/getcurrentposition/index.md
index 8168640a6c..a2d19748da 100644
--- a/files/fr/web/api/geolocation/getcurrentposition/index.md
+++ b/files/fr/web/api/geolocation/getcurrentposition/index.md
@@ -8,34 +8,32 @@ tags:
- Reference
translation_of: Web/API/Geolocation/getCurrentPosition
---
-<div>{{securecontext_header}}{{APIRef("Geolocation API")}}</div>
+{{securecontext_header}}{{APIRef("Geolocation API")}}
-<p>La méthode <strong><code>Geolocation.getCurrentPosition()</code></strong> fournit la position actuelle de l'appareil.</p>
+La méthode **`Geolocation.getCurrentPosition()`** fournit la position actuelle de l'appareil.
-<h2 id="Syntaxe">Syntaxe</h2>
+## Syntaxe
-<pre class="syntaxbox">navigator.geolocation.getCurrentPosition(<em>success[</em>, <em>error[</em>, <em>[options]]</em>)</pre>
+ navigator.geolocation.getCurrentPosition(success[, error[, [options]])
-<h3 id="Paramètres">Paramètres</h3>
+### Paramètres
-<dl>
- <dt><code>success</code></dt>
- <dd>Une fonction de rappel qui prend un objet {{domxref("Position")}} comme argument.</dd>
- <dt><code>error</code> {{optional_inline}}</dt>
- <dd>Une fonction de rappel qui prend un objet {{domxref("PositionError")}} comme argument.</dd>
- <dt><code>options</code> {{optional_inline}}</dt>
- <dd>Un objet {{domxref("PositionOptions")}} optionnel. Les options décrites par cet objet sont :
- <ul>
- <li><code>maximumAge</code> : un entier qui exprime une durée en millisecondes ou l'infini pour indiquer la durée maximale pendant laquelle mettre en cache la position.</li>
- <li><code>timeout</code> : un entier qui exprime la durée, en millisecondes, avant que la fonction de rappel <code>error</code> soit appelé. Si cette propriété vaut <code>0</code>, la fonction d'erreur ne sera jamais appelée.</li>
- <li><code>enableHighAccuracy</code> : un booléen qui indique si une précision élevée est requise.</li>
- </ul>
- </dd>
-</dl>
+- `success`
+ - : Une fonction de rappel qui prend un objet {{domxref("Position")}} comme argument.
+- `error` {{optional_inline}}
+ - : Une fonction de rappel qui prend un objet {{domxref("PositionError")}} comme argument.
+- `options` {{optional_inline}}
-<h2 id="Exemples">Exemples</h2>
+ - : Un objet {{domxref("PositionOptions")}} optionnel. Les options décrites par cet objet sont :
-<pre class="brush: js">var options = {
+ - `maximumAge` : un entier qui exprime une durée en millisecondes ou l'infini pour indiquer la durée maximale pendant laquelle mettre en cache la position.
+ - `timeout` : un entier qui exprime la durée, en millisecondes, avant que la fonction de rappel `error` soit appelé. Si cette propriété vaut `0`, la fonction d'erreur ne sera jamais appelée.
+ - `enableHighAccuracy` : un booléen qui indique si une précision élevée est requise.
+
+## Exemples
+
+```js
+var options = {
enableHighAccuracy: true,
timeout: 5000,
maximumAge: 0
@@ -55,34 +53,19 @@ function error(err) {
}
navigator.geolocation.getCurrentPosition(success, error, options);
-</pre>
-
-<h2 id="Spécifications">Spécifications</h2>
-
-<table class="standard-table">
- <thead>
- <tr>
- <th scope="col">Spécification</th>
- <th scope="col">État</th>
- <th scope="col">Commentaires</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>{{SpecName('Geolocation')}}</td>
- <td>{{Spec2('Geolocation')}}</td>
- <td>Spécification initiale.</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>
-
-<p>{{Compat("api.Geolocation.getCurrentPosition")}}</p>
-
-<h2 id="Voir_aussi">Voir aussi</h2>
-
-<ul>
- <li><a href="/en-US/docs/WebAPI/Using_geolocation">Utiliser la géolocalisation</a></li>
- <li>{{domxref("Navigator.geolocation")}}</li>
-</ul>
+```
+
+## Spécifications
+
+| Spécification | État | Commentaires |
+| ------------------------------------ | -------------------------------- | ----------------------- |
+| {{SpecName('Geolocation')}} | {{Spec2('Geolocation')}} | Spécification initiale. |
+
+## Compatibilité des navigateurs
+
+{{Compat("api.Geolocation.getCurrentPosition")}}
+
+## Voir aussi
+
+- [Utiliser la géolocalisation](/en-US/docs/WebAPI/Using_geolocation)
+- {{domxref("Navigator.geolocation")}}
diff --git a/files/fr/web/api/geolocation/index.md b/files/fr/web/api/geolocation/index.md
index e492a2a532..035dbab103 100644
--- a/files/fr/web/api/geolocation/index.md
+++ b/files/fr/web/api/geolocation/index.md
@@ -9,58 +9,39 @@ tags:
- Reference
translation_of: Web/API/Geolocation
---
-<div>{{APIRef("Geolocation API")}}</div>
+{{APIRef("Geolocation API")}}
-<p>En intégrant l'interface <code><strong>Geolocation</strong></code>, on peut obtenir la position d'un ordinateur, d'un téléphone ou d'une tablette, ce qui permet aux contenus Web d'accéder à leur localisation. Un site internet ou une application mobile peut alors offrir divers services liés à la localisation de l'utilisateur.</p>
+En intégrant l'interface **`Geolocation`**, on peut obtenir la position d'un ordinateur, d'un téléphone ou d'une tablette, ce qui permet aux contenus Web d'accéder à leur localisation. Un site internet ou une application mobile peut alors offrir divers services liés à la localisation de l'utilisateur.
-<p>On obtient un objet par le biais de cette interface avec la propriété {{domxref("NavigatorGeolocation.geolocation")}} proposée par l'objet {{domxref("Navigator")}} .</p>
+On obtient un objet par le biais de cette interface avec la propriété {{domxref("NavigatorGeolocation.geolocation")}} proposée par l'objet {{domxref("Navigator")}} .
-<div class="note">
-<p><strong>Note:</strong> Pour des raisons de sécurité, quand une page web tente d'accéder aux données de localisation, l'utilisateur est prévenu, et son accord lui est demandé. Sachez que chaque navigateur a ses propres méthodes et politiques pour gérer les autorisations.</p>
-</div>
+> **Note :** Pour des raisons de sécurité, quand une page web tente d'accéder aux données de localisation, l'utilisateur est prévenu, et son accord lui est demandé. Sachez que chaque navigateur a ses propres méthodes et politiques pour gérer les autorisations.
-<h2 id="Propriétés">Propriétés</h2>
+## Propriétés
-<p><em>L'interface de géolocalisation n'utilise ou n'hérite d'aucune propriété.</em></p>
+_L'interface de géolocalisation n'utilise ou n'hérite d'aucune propriété._
-<h2 id="Méthodes">Méthodes</h2>
+## Méthodes
-<p><em>L'interface de géolocalisation n'hérite d'aucune méthode.</em></p>
+_L'interface de géolocalisation n'hérite d'aucune méthode._
-<dl>
- <dt>{{domxref("Geolocation.getCurrentPosition()")}}</dt>
- <dd>Determine la position actuelle de l'appareil et donne en retour l'objet {{domxref("Position")}} avec sa valeur.</dd>
- <dt>{{domxref("Geolocation.watchPosition()")}}</dt>
- <dd>Retourne une valeur <code>long</code> représentant la nouvelle fonction callback, créée pour être utilisée à chaque fois que la position de l'appareil change.</dd>
- <dt>{{domxref("Geolocation.clearWatch()")}}</dt>
- <dd>Supprime le lien créé par la précédente utilisation de <code>watchPosition()</code>.</dd>
-</dl>
+- {{domxref("Geolocation.getCurrentPosition()")}}
+ - : Determine la position actuelle de l'appareil et donne en retour l'objet {{domxref("Position")}} avec sa valeur.
+- {{domxref("Geolocation.watchPosition()")}}
+ - : Retourne une valeur `long` représentant la nouvelle fonction callback, créée pour être utilisée à chaque fois que la position de l'appareil change.
+- {{domxref("Geolocation.clearWatch()")}}
+ - : Supprime le lien créé par la précédente utilisation de `watchPosition()`.
-<h2 id="Spécifications">Spécifications</h2>
+## Spécifications
-<table class="standard-table">
- <thead>
- <tr>
- <th scope="col">Spécification</th>
- <th scope="col">Statut</th>
- <th scope="col">Commentaire</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>{{SpecName('Geolocation')}}</td>
- <td>{{Spec2('Geolocation')}}</td>
- <td>Spécification initiale.</td>
- </tr>
- </tbody>
-</table>
+| Spécification | Statut | Commentaire |
+| ------------------------------------ | -------------------------------- | ----------------------- |
+| {{SpecName('Geolocation')}} | {{Spec2('Geolocation')}} | Spécification initiale. |
-<h2 id="Browser_compatibility">Compatibilité des navigateurs</h2>
+## Compatibilité des navigateurs
-<p>{{Compat("api.Geolocation")}}</p>
+{{Compat("api.Geolocation")}}
-<h2 id="See_also">Voir aussi</h2>
+## Voir aussi
-<ul>
- <li><a href="/fr/docs/Web/API/Geolocation_API/Using_the_Geolocation_API">Utiliser geolocation</a></li>
-</ul>
+- [Utiliser geolocation](/fr/docs/Web/API/Geolocation_API/Using_the_Geolocation_API)
diff --git a/files/fr/web/api/geolocation/watchposition/index.md b/files/fr/web/api/geolocation/watchposition/index.md
index c2424f4774..71ed0cfc2c 100644
--- a/files/fr/web/api/geolocation/watchposition/index.md
+++ b/files/fr/web/api/geolocation/watchposition/index.md
@@ -10,35 +10,34 @@ tags:
- Reference
translation_of: Web/API/Geolocation/watchPosition
---
-<p>{{ APIref("Geolocation API") }}</p>
+{{ APIref("Geolocation API") }}
-<p>La méthode <strong><code>Geolocation.watchPosition()</code></strong> permet de manipuler une fonction appelée automatiquement à chaque fois que la position de l'appareil change. Vous pouvez de même, en option, manipuler une autre fonction appelée automatiquement pour gérer les erreurs.</p>
+La méthode **`Geolocation.watchPosition()`** permet de manipuler une fonction appelée automatiquement à chaque fois que la position de l'appareil change. Vous pouvez de même, en option, manipuler une autre fonction appelée automatiquement pour gérer les erreurs.
-<p>Cette méthode retourne une valeur ID de veille qui permet de libérer les fonctions déclarées automatiquement, évoquées précédemment, à l'aide de la méthode {{domxref("Geolocation.clearWatch()")}}.</p>
+Cette méthode retourne une valeur ID de veille qui permet de libérer les fonctions déclarées automatiquement, évoquées précédemment, à l'aide de la méthode {{domxref("Geolocation.clearWatch()")}}.
-<h2 id="Syntaxe">Syntaxe</h2>
+## Syntaxe
-<pre class="syntaxbox"><em>id</em> = navigator.geolocation.watchPosition(<em>success[</em>, <em>error[</em>, <em>options]]</em>)</pre>
+ id = navigator.geolocation.watchPosition(success[, error[, options]])
-<h3 id="Paramètres">Paramètres</h3>
+### Paramètres
-<dl>
- <dt><em>success</em></dt>
- <dd>Nom d'une fonction appelée qui a pour paramètre l'objet {{domxref("Position")}}.</dd>
- <dt><em>error</em> {{optional_inline}}</dt>
- <dd>Nom d'une fonction optionnelle qui a pour paramètre l'objet {{domxref("PositionError")}}.</dd>
- <dt><em>options</em> {{optional_inline}}</dt>
- <dd>Un objet optionnel {{domxref("PositionOptions")}}.</dd>
-</dl>
+- _success_
+ - : Nom d'une fonction appelée qui a pour paramètre l'objet {{domxref("Position")}}.
+- _error_ {{optional_inline}}
+ - : Nom d'une fonction optionnelle qui a pour paramètre l'objet {{domxref("PositionError")}}.
+- _options_ {{optional_inline}}
+ - : Un objet optionnel {{domxref("PositionOptions")}}.
-<h2 id="Exemple">Exemple</h2>
+## Exemple
-<pre class="brush: js">var id, target, options;
+```js
+var id, target, options;
function success(pos) {
var crd = pos.coords;
- if (target.latitude === crd.latitude &amp;&amp; target.longitude === crd.longitude) {
+ if (target.latitude === crd.latitude && target.longitude === crd.longitude) {
console.log('Bravo, vous avez atteint la cible');
navigator.geolocation.clearWatch(id);
}
@@ -60,41 +59,24 @@ options = {
};
id = navigator.geolocation.watchPosition(success, error, options);
-</pre>
-
-<div class="note">
- <p><strong>Note :</strong> Si votre application fonctionne sous Firefox OS, veillez à la <a href="/en-US/docs/Web/API/Geolocation/navigator.requestWakeLock()">geolocation wake lock</a> pour que votre application continue à recevoir les changements de positions si votre application tourne en tâche de fond, ou si votre écran est éteint.</p>
-</div>
-
-<h2 id="Spécifications">Spécifications</h2>
-
-<table class="standard-table">
- <thead>
- <tr>
- <th scope="col">Spécification</th>
- <th scope="col">Statut</th>
- <th scope="col">Commentaire</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>{{SpecName('Geolocation', '#watch-position', 'Geolocation.watchPosition()')}}</td>
- <td>{{Spec2('Geolocation')}}</td>
- <td>Specification initiale.</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Browser_compatibility">Compatibilité des navigateurs</h2>
-
-<p>{{Compat("api.Geolocation.watchPosition")}}</p>
-
-<h2 id="See_also">Voir aussi</h2>
-
-<ul>
- <li><a href="/fr/docs/Web/API/Geolocation/navigator.requestWakeLock()">geolocation wake lock</a></li>
- <li><a href="/fr/docs/WebAPI/Using_geolocation">Utiliser geolocation</a></li>
- <li>L'interface qui lui est réservée, {{domxref("Geolocation")}}, et la façon d'y accéder {{domxref("NavigatorGeolocation.geolocation")}}.</li>
- <li>L'opération inverse : {{domxref("Geolocation.clearWatch()")}}</li>
- <li>Une méthode similaire : {{domxref("Geolocation.getCurrentPosition()")}}</li>
-</ul>
+```
+
+> **Note :** Si votre application fonctionne sous Firefox OS, veillez à la [geolocation wake lock](</en-US/docs/Web/API/Geolocation/navigator.requestWakeLock()>) pour que votre application continue à recevoir les changements de positions si votre application tourne en tâche de fond, ou si votre écran est éteint.
+
+## Spécifications
+
+| Spécification | Statut | Commentaire |
+| -------------------------------------------------------------------------------------------------------- | -------------------------------- | ----------------------- |
+| {{SpecName('Geolocation', '#watch-position', 'Geolocation.watchPosition()')}} | {{Spec2('Geolocation')}} | Specification initiale. |
+
+## Compatibilité des navigateurs
+
+{{Compat("api.Geolocation.watchPosition")}}
+
+## Voir aussi
+
+- [geolocation wake lock](</fr/docs/Web/API/Geolocation/navigator.requestWakeLock()>)
+- [Utiliser geolocation](/fr/docs/WebAPI/Using_geolocation)
+- L'interface qui lui est réservée, {{domxref("Geolocation")}}, et la façon d'y accéder {{domxref("NavigatorGeolocation.geolocation")}}.
+- L'opération inverse : {{domxref("Geolocation.clearWatch()")}}
+- Une méthode similaire : {{domxref("Geolocation.getCurrentPosition()")}}