diff options
author | julieng <julien.gattelier@gmail.com> | 2021-10-02 17:20:24 +0200 |
---|---|---|
committer | SphinxKnight <SphinxKnight@users.noreply.github.com> | 2021-10-02 17:30:20 +0200 |
commit | 1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde (patch) | |
tree | 30a56efd3eff3a01bd1611e1840fdbbfacf544a4 /files/fr/web/api/geolocationpositionerror | |
parent | c05efa8d7ae464235cf83d7c0956e42dc6974103 (diff) | |
download | translated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.tar.gz translated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.tar.bz2 translated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.zip |
convert content to md
Diffstat (limited to 'files/fr/web/api/geolocationpositionerror')
-rw-r--r-- | files/fr/web/api/geolocationpositionerror/index.md | 86 |
1 files changed, 25 insertions, 61 deletions
diff --git a/files/fr/web/api/geolocationpositionerror/index.md b/files/fr/web/api/geolocationpositionerror/index.md index 9a7f5a0af1..0a03eb4bee 100644 --- a/files/fr/web/api/geolocationpositionerror/index.md +++ b/files/fr/web/api/geolocationpositionerror/index.md @@ -3,78 +3,42 @@ title: GeolocationPositionError slug: Web/API/GeolocationPositionError translation_of: Web/API/GeolocationPositionError --- -<div>{{securecontext_header}}{{APIRef("Geolocation API")}}</div> +{{securecontext_header}}{{APIRef("Geolocation API")}} -<p>L'interface <strong><code>GeolocationPositionError</code></strong> représente la raison de l'erreur apparue lorsque l'on utilise la géolocalisation de l'appareil.</p> +L'interface **`GeolocationPositionError`** représente la raison de l'erreur apparue lorsque l'on utilise la géolocalisation de l'appareil. -<h2 id="Propriétés">Propriétés</h2> +## Propriétés -<p><em>L'interface <code>GeolocationPositionError</code> n'hérite d'aucune propriété.</em></p> +_L'interface `GeolocationPositionError` n'hérite d'aucune propriété._ -<dl> - <dt>{{domxref("GeolocationPositionError.code")}} {{readonlyInline}} {{securecontext_inline}}</dt> - <dd>Retourne un <code>unsigned short</code> représentant un code d'erreur. Les valeurs possibles sont: - <table class="standard-table"> - <tbody> - <tr> - <th scope="col">Valeur</th> - <th scope="col">Constante associée</th> - <th scope="col">Description</th> - </tr> - <tr> - <td><code>1</code></td> - <td><code>PERMISSION_DENIED</code></td> - <td>L’acquisition de la position échoue car la page n'a pas l'autorisation de le faire.</td> - </tr> - <tr> - <td><code>2</code></td> - <td><code>POSITION_UNAVAILABLE</code></td> - <td>L’acquisition de la localisation échoue car au moins une source donnant la position a retourné une erreur interne.</td> - </tr> - <tr> - <td><code>3</code></td> - <td><code>TIMEOUT</code></td> - <td>Le temps alloué pour obtenir la position défini par {{domxref("PositionOptions.timeout")}} est écoulé avant que l'information soit obtenu.</td> - </tr> - </tbody> - </table> - </dd> - <dt>{{domxref("GeolocationPositionError.message")}} {{readonlyInline}} {{securecontext_inline}}</dt> - <dd>Retourne une {{domxref("DOMString")}} compréhensible par un humain décrivant les détails de l'erreur. Les spécifications indiquent que cela sert au débogage et ne doit pas être directement affiché à l'utilisateur.</dd> -</dl> +- {{domxref("GeolocationPositionError.code")}} {{readonlyInline}} {{securecontext_inline}} -<h2 id="Méthodes">Méthodes</h2> + - : Retourne un `unsigned short` représentant un code d'erreur. Les valeurs possibles sont: -<p><em><em>L'interface </em><code>GeolocationPositionError</code><em> n'implémente et n'hérite d'aucune méthode.</em></em></p> + | Valeur | Constante associée | Description | + | ------ | ---------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | + | `1` | `PERMISSION_DENIED` | L’acquisition de la position échoue car la page n'a pas l'autorisation de le faire. | + | `2` | `POSITION_UNAVAILABLE` | L’acquisition de la localisation échoue car au moins une source donnant la position a retourné une erreur interne. | + | `3` | `TIMEOUT` | Le temps alloué pour obtenir la position défini par {{domxref("PositionOptions.timeout")}} est écoulé avant que l'information soit obtenu. | -<h2 id="Spécifications">Spécifications</h2> +- {{domxref("GeolocationPositionError.message")}} {{readonlyInline}} {{securecontext_inline}} + - : Retourne une {{domxref("DOMString")}} compréhensible par un humain décrivant les détails de l'erreur. Les spécifications indiquent que cela sert au débogage et ne doit pas être directement affiché à l'utilisateur. -<table class="standard-table"> - <thead> - <tr> - <th scope="col">Spécification</th> - <th scope="col">Statut</th> - <th scope="col">Commentaires</th> - </tr> - </thead> - <tbody> - <tr> - <td>{{SpecName('Geolocation', '#position_error_interface', 'GeolocationPositionError')}}</td> - <td>{{Spec2('Geolocation')}}</td> - <td>Définition initiale.</td> - </tr> - </tbody> -</table> +## Méthodes -<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> +**L'interface* `GeolocationPositionError` *n'implémente et n'hérite d'aucune méthode.** +## Spécifications +| Spécification | Statut | Commentaires | +| ---------------------------------------------------------------------------------------------------------------- | -------------------------------- | -------------------- | +| {{SpecName('Geolocation', '#position_error_interface', 'GeolocationPositionError')}} | {{Spec2('Geolocation')}} | Définition initiale. | -<p>{{Compat("api.GeolocationPositionError")}}</p> +## Compatibilité des navigateurs -<h2 id="Voir_aussi">Voir aussi</h2> +{{Compat("api.GeolocationPositionError")}} -<ul> - <li><a href="/fr/docs/Web/API/Geolocation_API/Using">Utiliser l'API de géolocalisation</a></li> - <li>{{domxref("Geolocation")}}</li> -</ul> +## Voir aussi + +- [Utiliser l'API de géolocalisation](/fr/docs/Web/API/Geolocation_API/Using) +- {{domxref("Geolocation")}} |