@impargo/react-here-maps
Version:
React.js HERE Maps component
9 lines (8 loc) • 345 B
TypeScript
/// <reference types="react" />
export interface HEREMapContextType {
map?: H.Map;
routesGroup?: H.map.Group;
removeFromMarkerGroup: (marker: H.map.Marker, group: string) => void;
addToMarkerGroup: (marker: H.map.Marker, group: string) => void;
}
export declare const HEREMapContext: import("react").Context<HEREMapContextType>;