UNPKG

@targomo/leaflet

Version:

Leaflet maps extensions for Targomo's time-based access mapping services.

16 lines (15 loc) 544 B
import { ProjectedMultiPolygon, ProjectedBounds } from '../geometry/projectedPolygon'; import { PolygonRenderOptions } from './options'; export { PolygonRenderOptionsData } from './options'; /** * * @param viewport * @param bounds3857 * @param zoomFactor * @param multipolygons */ export declare function render(viewport: ProjectedBounds, bounds3857: ProjectedBounds, zoomFactor: number, multipolygons: ProjectedMultiPolygon, options: PolygonRenderOptions): { content: string; width: number; height: number; };