UNPKG

@goparrot/geocoder

Version:

TypeScript GeoCoder, node geocoding library, supports google maps, mapquest, here, open street map, tom tom

10 lines (9 loc) 340 B
/** * https://developers.arcgis.com/rest/geocode/api-reference/geocoding-category-filtering.htm */ import type { ArcgisQueryInterface } from './arcgis-query.interface'; export interface ArcgisPlaceDetailsQueryInterface extends ArcgisQueryInterface { magicKey: string; outFields?: string; locationType: 'rooftop' | 'street'; }