Skip to content

Latest commit

 

History

History
13 lines (12 loc) · 334 Bytes

README.md

File metadata and controls

13 lines (12 loc) · 334 Bytes

BezierPath

MapBox 利用贝塞尔曲线实现地图上两个点之间的连线弯曲效果。

js

js 的实现方式

example

var bezier = new BezierPath(startlatlng,endlatlng,true);
// 曲线角度
bezier.MakePath(90);
// 转化为 geojson
line = bezier.toMapBoxFeature({ name: 'routes',color:'#1087bf',weight:2 });