@deck.gl/widgets
Version:
UI widgets for deck.gl
15 lines • 605 B
TypeScript
/** A geocoder that translates an address string into a location */
export type Geocoder = {
/** The name of the geocoder, e.g. google, mapbox, ... */
name: string;
/** Does the geocoder require an api key? */
requiresApiKey?: boolean;
/** A string that can be used to indicate the accepted format */
placeholderLocation?: string;
/** Calls the geocoder service, translating an address string into a location */
geocode(address: string, apiKey: string): Promise<{
longitude: number;
latitude: number;
} | null>;
};
//# sourceMappingURL=geocoder.d.ts.map