import L from 'leaflet'; import type { MyMap } from 'map-sdk-leaflet/es/sdk'; declare class ShowWeatherTipMessage { private _map; lyGroup: L.LayerGroup; clickLatLng: L.LatLng; type: string; infoDom: HTMLElement; constructor(map: MyMap, type: string); showWeatherLayer(latlng: L.LatLngExpression): void; private _Event; private _renderHtml; registerEvent(): void; offRegisterEvent(isClearEvent?: boolean): void; /** * 气象信息 角度 * @param wind * @returns */ winddir(wind: string | number): "-" | "S" | "W" | "E" | "N" | "NNE" | "NE" | "ENE" | "ESE" | "SE" | "SSE" | "SSW" | "SW" | "WSW" | "WNW" | "NW" | "NNW"; /** * 气象风级 * @param wind * @returns */ private changeWind; } declare const showWeatherTipMessage: (map: MyMap, type: string) => ShowWeatherTipMessage; export { showWeatherTipMessage };