--- title: Geolocation API slug: Web/API/Geolocation_API translation_of: Web/API/Geolocation_API ---
{{securecontext_header}}{{DefaultAPISidebar("Geolocation API")}}

Geolokalizacja API umożliwia użytkownikowi zapewnić ich lokalizację do aplikacji internetowych, jeśli zechcą. Ze względów prywatności użytkownik jest proszony o zgodę na zgłoszenie informacji o lokalizacji.

Rozszerzenia Web, które chcą korzystać z obiektu Geolokalizacja, muszą dodać "geolocation"uprawnienie do swojego manifestu. System operacyjny użytkownika poprosi użytkownika o zezwolenie na dostęp do lokalizacji przy pierwszym żądaniu.

Pojęcia i użycie

Często będziesz chciał odzyskać informacje o lokalizacji użytkownika w swojej aplikacji internetowej, na przykład wykreślić jego lokalizację na mapie lub wyświetlić spersonalizowane informacje dotyczące ich lokalizacji.

The Geolocation API is accessed via a call to {{domxref("Navigator.geolocation", "navigator.geolocation")}}; this will cause the user's browser to ask them for permission to access their location data. If they accept, then the browser will use the best available functionality on the device to access this information (for example, GPS).

The developer can now access this location information in a couple of different ways:

In both cases, the method call takes up to three arguments:

For further information on Geolocation usage, read Using the Geolocation API.

Interfaces

{{domxref("Geolocation")}}
The main class of this API — contains methods to retrieve the user's current position, watch for changes in their position, and clear a previously-set watch.
{{domxref("GeolocationPosition")}}
Represents the position of a user. A GeolocationPosition instance is returned by a successful call to one of the methods contained inside {{domxref("Geolocation")}}, inside a success callback, and contains a timestamp plus a {{domxref("GeolocationCoordinates")}} object instance.
{{domxref("GeolocationCoordinates")}}
Represents the coordinates of a user's position; a GeolocationCoordinates instance contains latitude, longitude, and other important related information.
{{domxref("GeolocationPositionError")}}
A GeolocationPositionError is returned by an unsuccessful call to one of the methods contained inside {{domxref("Geolocation")}}, inside an error callback, and contains an error code and message.
{{domxref("Navigator.geolocation")}}
The entry point into the API. Returns a {{domxref("Geolocation")}} object instance, from which all other functionality can be accessed.

Dictionaries

{{domxref("PositionOptions")}}
Represents an object containing options to pass in as a parameter of {{domxref("Geolocation.getCurrentPosition()")}} and {{domxref("Geolocation.watchPosition()")}}.

Examples

{{page("/en-US/docs/Web/API/Geolocation_API/Using_the_Geolocation_API","Examples")}}

Specifications

Specification Status Comment
{{SpecName("Geolocation")}} {{Spec2("Geolocation")}}

Kompatybilność z przeglądarkami

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

Dostępność

Ponieważ Google często zapewnia lokalizację w oparciu o Wi-Fi, waniliowy interfejs API geolokalizacji może być niedostępny w Chinach. Możesz korzystać z usług lokalnych dostawców zewnętrznych, takich jak Baidu , Autonavi lub Tencent . Usługi te wykorzystują adres IP użytkownika i / lub lokalną aplikację do zapewnienia lepszego pozycjonowania.

Zobacz też