UNPKG

bigdatacloud-reverse-geocodingv2

Version:

Reverse geocoding browser-based typescript library, using free Bigdatacloud API

8 lines (7 loc) 252 B
export * from './interface'; import { IGeocode, ILocation, IReverseGeocode } from './interface'; export default class ReverseGeocode { private options; constructor(options?: IReverseGeocode); locate(coords: ILocation): Promise<IGeocode>; }