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