Leaflet.Arc
Leaflet.js plugin for drawing Great Circle arcs using arc.js
This Leaflet.js plugin adds L.Polyline.Arc function which wraps arc.js functionality for drawing Great Circle arcs on your maps.
Tested with Leaflet v1.0.0-beta.2 and v1.0.0-rc.3
Usage & Installation
-
Include leaflet-arc.min.js after Leaflet:
You can use hosted version from unpkg.com:
Or install from npm:
npm install --save leaflet-arc -
Create arcs!
LPolyline;You can also change number of vertices in line or use all L.Polyline options:
LPolyline;
API
LPolyline
Returns general L.Polyline
object.
from, to
L.LatLng
objects representing the beginning and the end of arc
options
options
Object to bypass options. Possible properties (inherited from arc.js options):
vertices
- number of intermediate vertices in resulting arc;offset
- controls the likelyhood that lines will be split which cross the dateline
All L.Polyline
options are also supported.