@goparrot/geocoder
Version:
TypeScript GeoCoder, node geocoding library, supports google maps, mapquest, here, open street map, tom tom
14 lines (13 loc) • 673 B
TypeScript
import type { GoogleMapsQueryInterface } from './google-maps-query.interface';
export interface GoogleMapsPlaceDetailsQueryInterface extends GoogleMapsQueryInterface {
placeid: string;
/**
* Warning: If you do not specify at least one field with a request,
* or if you omit the fields parameter from a request, ALL possible fields will be returned,
* and you will be billed accordingly. This applies only to Place Details requests.
*
* @link https://developers.google.com/places/web-service/details
* @link https://developers.google.com/maps/documentation/javascript/reference/places-service#PlaceResult
*/
fields?: string;
}