UNPKG

@fleet-frontend/mower-maps

Version:

a mower maps in google maps

18 lines 681 B
import { DrawElement } from '../../types/layers'; import { MapElement } from '../../types'; import { BoundaryStyle } from '../../types/renderer'; /** * 边界数据构建器 */ export declare class BoundaryDataBuilder { /** * 创建边界元素数据 */ static create(type: 'boundary' | 'boundary_border', coordinates: number[][], style: BoundaryStyle): DrawElement; /** * 从地图元素创建边界数据 */ static fromMapElement(element: MapElement, style: BoundaryStyle): DrawElement | null; static createBoundaryBorder(element: MapElement, style: BoundaryStyle): DrawElement | null; } //# sourceMappingURL=BoundaryDataBuilder.d.ts.map