@goparrot/geocoder
Version:
TypeScript GeoCoder, node geocoding library, supports google maps, mapquest, here, open street map, tom tom
16 lines (15 loc) • 360 B
TypeScript
import type { HereQueryInterface } from './here-query.interface';
export interface HereGeocodeQueryInterface extends HereQueryInterface {
searchtext: string;
postalcode?: string;
/**
* ISO 3166-1-alpha-3
*/
country?: string;
state?: string;
city?: string;
/**
* @example "lat,lon,radius"
*/
prox?: string;
}