@zxh19890103/wik
Version:
The world-class JavaScript library for building large-scale digital warehouse both on 2D and 3D.
28 lines (27 loc) • 565 B
TypeScript
import L from 'leaflet';
import { Polyline } from './basic';
export declare class Route extends Polyline {
private part;
private top;
/**
* move to
*/
M(latlng: L.LatLngExpression): this;
/**
* line to
*/
L(latlng: L.LatLngExpression): this;
/**
* horizontal line to
*/
H(lng: number): this;
/**
* veertically line to
*/
V(lat: number): this;
/**
* bezizer curve to
*/
B(to: L.LatLngExpression, c0: L.LatLngExpression, c1: L.LatLngExpression): this;
F(): this;
}