maplibre-gl-measures
Version:
Length and area measurements with linestrings and polygons
57 lines (51 loc) • 1.37 kB
TypeScript
declare module 'maplibre-gl-measures' {
import { Map } from 'maplibre-gl';
interface MeasuresControlOptions {
lang?: {
areaMeasurementButtonTitle?: string;
lengthMeasurementButtonTitle?: string;
clearMeasurementsButtonTitle?: string;
};
units?: 'imperial' | 'metric';
unitsGroupingSeparator?: string;
minimumFractionDigits?: number;
maximumFractionDigits?: number;
fixedLengthUnit?: 'mm' | 'cm' | 'm' | 'km' | 'in' | 'ft' | 'yd' | 'mi';
fixedAreaUnit?: 'mm2' | 'cm2' | 'm2' | 'km2' | 'ha' | 'in2' | 'ft2' | 'yd2' | 'ac' | 'mi2';
showOnlyTotalLineLength?: boolean;
style?: {
text?: {
radialOffset?: number;
letterSpacing?: number;
color?: string;
haloColor?: string;
haloWidth?: number;
font?: string;
};
common?: {
midPointRadius?: number;
midPointColor?: string;
midPointHaloRadius?: number;
midPointHaloColor?: string;
};
areaMeasurement?: {
fillColor?: string;
fillOutlineColor?: string;
fillOpacity?: number;
lineWidth?: number;
};
lengthMeasurement?: {
lineWidth?: number;
lineColor?: string;
};
};
onRender?: (features: any) => void;
onCreate?: (features: any) => void;
}
class MeasuresControl {
constructor(options: MeasuresControlOptions);
onAdd(map: Map): HTMLElement;
onRemove(): void;
}
export default MeasuresControl;
}