@watergis/maplibre-gl-export
Version:
This module adds control which can export PDF and images.
9 lines • 766 B
TypeScript
import { Map as MaplibreMap, StyleSpecification } from 'maplibre-gl';
import { DPIType, FormatType, SizeType, UnitType } from './interfaces';
import { MapGeneratorBase } from './map-generator-base';
export default class MapGenerator extends MapGeneratorBase {
constructor(map: MaplibreMap, size?: SizeType, dpi?: DPIType, format?: FormatType, unit?: UnitType, fileName?: string, markerCirclePaint?: import("mapbox-gl").CirclePaint, attributionOptions?: import("./interfaces").AttributionOptions, northIconOptions?: import("./interfaces").NorthIconOptions);
protected getRenderedMap(container: HTMLElement, style: StyleSpecification): MaplibreMap;
protected renderMapPost(renderMap: MaplibreMap): MaplibreMap;
}
//# sourceMappingURL=map-generator.d.ts.map