ol-owm
Version:
Weather layer for OpenLayers and Leaflet using OpenWeatherMap
14 lines (13 loc) • 431 B
TypeScript
import { MapAdapter } from "../interface/map-adapter.interface";
import { WindProperties } from "../interface/properties.interface";
export declare class WindAnimation {
private map;
private properties;
private layer;
private zoomListenerKey;
active: boolean;
constructor(map: MapAdapter, properties: WindProperties | undefined);
getActive(): boolean;
start(data: any): void;
stop(): boolean;
}