UNPKG

@equinor/videx-map

Version:

Component for Pixi-overlay in Leaflet.

17 lines (16 loc) 499 B
export interface pixiOverlayBase { initialize(drawCallback: any, pixiContainer: any, options: any): void; onAdd(targetMap: any): void; onRemove(): void; getEvents(): any; redraw(data?: any): any; utils: pixiOverlayUtils; } export interface pixiOverlayUtils { latLngToLayerPoint(latLng: any, zoom?: number): any; layerPointToLatLng(point: any, zoom?: number): any; getScale(zoom: number): any; getRenderer(): any; getContainer(): any; getMap(): any; }