react-azure-maps
Version:
React Wrapper for Azure Maps
6 lines (5 loc) • 470 B
TypeScript
import { IAzureCustomControls, IAzureMapControls, MapType } from '../../types';
import atlas, { ControlOptions } from 'azure-maps-control';
export declare const createMapControls: (mapRef: MapType, controls: IAzureMapControls[]) => void;
export declare const createControl: (type: string, options?: ControlOptions) => atlas.control.ControlBase | undefined;
export declare const createMapCustomControls: (mapRef: MapType, customControls: IAzureCustomControls[]) => void;