UNPKG

@pnp/spfx-controls-react

Version:

Reusable React controls for SharePoint Framework solutions

40 lines 800 B
export interface ICoordinates { /** * Latitude of the map to display */ latitude: number; /** * Longitude of the map to display */ longitude: number; /** * Display Name of the location */ displayName?: string; /** * Address of the location */ address?: any; } export declare enum MapType { standard = "mapnik", cycle = "cyclemap", normal = "hot", transport = "transportmap" } export interface LocationInfo { place_id: string; licence: string; osm_type: string; osm_id: string; boundingbox: string[]; lat: string; lon: string; display_name: string; class: string; type: string; importance: number; icon: string; address?: any; } //# sourceMappingURL=IMap.d.ts.map