@nativescript-community/geocoding
Version:
Provides access to native geocoding APIs for NativeScript apps (android.location.Geocoder for Android, CLGeocoder for iOS).
17 lines (16 loc) • 470 B
TypeScript
import { Location as LocationDef } from "./location";
export declare class LocationBase implements LocationDef {
latitude: number;
longitude: number;
name: string;
isoCountryCode: string;
country: string;
postalCode: string;
administrativeArea: string;
subAdministrativeArea: string;
locality: string;
subLocality: string;
thoroughfare: string;
subThoroughfare: string;
}
export declare const LOC_SEARCH_MAX_RESULTS = 10;