UNPKG

@fleet-frontend/mower-maps

Version:

a mower maps in google maps

20 lines 730 B
import { DrawElement } from '../../types/layers'; import { ChannelStyle, MapElement } from '../../types'; /** * 路径数据构建器 */ export declare class ChannelDataBuilder { /** * 创建路径元素数据 */ static create(coordinates: number[][], style: ChannelStyle): DrawElement; /** * 创建隧道元素数据 */ static createTunnel(element: MapElement, style: ChannelStyle): DrawElement<ChannelStyle> | null; /** * 创建充电桩内部隧道路径(用于CHARGING_PILE元素中的tunnel.points) */ static createChargingPileTunnelPath(element: MapElement, style: ChannelStyle): DrawElement<ChannelStyle> | null; } //# sourceMappingURL=ChannelDataBuilder.d.ts.map