Capacitor plugin for native forward and reverse geocoding
npm install @capgo/nativegeocoder
npx cap sync
then import this into your code:
import { NativeGeocoder } from '@capgo/nativegeocoder';
Apple requires privacy descriptions to be specified in Info.plist
for location information:
NSLocationAlwaysAndWhenInUseUsageDescription
(Privacy - Location Always Usage Description
)NSLocationWhenInUseUsageDescription
(Privacy - Location When In Use Usage Description
)Read about Configuring Info.plist
in the iOS Guide for more information on setting iOS permissions in Xcode
The IOS implementation require internet
This API requires the following permissions be added to your AndroidManifest.xml
:
<!-- Geolocation API -->
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-feature android:name="android.hardware.location.gps" />
This API requires a Google API key to be set in the apiKey
field of the ForwardOptions
or ReverseOptions
interfaces.
There is no way to use this plugin on the web without a Google API key.
The return data is limited to the data available from the native API on the device, as exemple formatted_address
is not available in web implementation, as it's not available in the native API.
reverseGeocode(options: ReverseOptions) => Promise<{ addresses: Address[]; }>
Convert latitude and longitude to an address
Param | Type |
---|---|
options |
ReverseOptions |
Returns: Promise<{ addresses: Address[]; }>
Since: 0.0.1
forwardGeocode(options: ForwardOptions) => Promise<{ addresses: Address[]; }>
Convert an address to latitude and longitude
Param | Type |
---|---|
options |
ForwardOptions |
Returns: Promise<{ addresses: Address[]; }>
Since: 0.0.1
Prop | Type |
---|---|
latitude |
number |
longitude |
number |
countryCode |
string |
countryName |
string |
postalCode |
string |
administrativeArea |
string |
subAdministrativeArea |
string |
locality |
string |
subLocality |
string |
thoroughfare |
string |
subThoroughfare |
string |
areasOfInterest |
string[] |
Prop | Type | Description |
---|---|---|
latitude |
number |
latitude is a number representing the latitude of the location. |
longitude |
number |
longitude is a number representing the longitude of the location. |
useLocale |
boolean |
Localise the results to the given locale. |
defaultLocale |
string |
locale is a string in the format of language_country, for example en_US. |
maxResults |
number |
Max number of results to return. |
apiKey |
string |
Only used for web platform to use google api |
resultType |
string |
Only used for web platform to use google api |
Prop | Type | Description |
---|---|---|
addressString |
string |
address is a string of the address to be geocoded. |
useLocale |
boolean |
Localise the results to the given locale. |
defaultLocale |
string |
locale is a string in the format of language_country, for example en_US. |
maxResults |
number |
Max number of results to return. |
apiKey |
string |
Only used for web platform to use google api |
To @sebastianbaar and his work on cordova-plugin-nativegeocoder what he made was very inspiring
Verwendung von @capgo/nativegeocoder für Geokodierung
Das Paket @capgo/nativegeocoder
ist ein Capacitor-Plugin, das native Funktionen für vorwärts und rückwärts Geokodierung bereitstellt. Geokodierung ist der Prozess, Adressen in geografische Koordinaten (Breitengrad und Längengrad) und umgekehrt umzuwandeln.
Um das Paket @capgo/nativegeocoder
zu verwenden, befolgen Sie die folgenden Schritte:
Installieren Sie das Paket mit npm:
npm install @capgo/nativegeocoder
Führen Sie den folgenden Befehl aus, um Ihr Projekt zu synchronisieren:
npx cap sync
Importieren Sie in Ihrem Code NativeGeocoder
aus @capgo/nativegeocoder
:
import { NativeGeocoder } from '@capgo/nativegeocoder';
Das Plugin @capgo/nativegeocoder
bietet zwei Hauptmethoden für die Geokodierung:
Die Rückwärts-Geokodierung ist der Prozess, geografische Koordinaten (Breitengrad und Längengrad) in eine Adresse umzuwandeln.
const reverseOptions = {
latitude: 37.7749,
longitude: -122.4194,
};
const address = NativeGeocoder.reverseGeocode(reverseOptions);
console.log(address);
Die Methode reverseGeocode
nimmt ein Objekt mit den Eigenschaften Breitengrad und Längengrad. Sie gibt die Adresse als Ergebnis zurück.
Die Vorwärts-Geokodierung ist der Prozess, eine Adresse in geografische Koordinaten (Breitengrad und Längengrad) umzuwandeln.
const forwardOptions = {
address: '1600 Amphitheatre Parkway, Mountain View, CA',
};
const coordinates = NativeGeocoder.forwardGeocode(forwardOptions);
console.log(coordinates);
Die Methode forwardGeocode
nimmt ein Objekt mit der Adresseigenschaft. Sie gibt die Koordinaten als Ergebnis zurück.
Das Paket @capgo/nativegeocoder
bietet eine einfache und effiziente Möglichkeit, Geokodierung in Ihrem Capacitor-Projekt durchzuführen. Indem Sie die in diesem Tutorial beschriebenen Schritte befolgen, können Sie die Geokodierungsfunktionalität problemlos in Ihre Anwendung integrieren.