arc.js
arc.js copied to clipboard
arc not complete for crossing dateline
sample gist: https://gist.github.com/xqin1/b38dd6ed9ae96174b96e two points for Seattle and Beijing, China. The arc seems to break at dateline, but the second half is not drawn.
I'm having the same issue. It's not just a broken plot, but rather takes the long path along the closest latitude.

Coordinates are [33.6442641, -117.8554282], [12.423, 123.514]
Same issue here - trying to draw a flight path from LAX to SYD and I'm getting this:

var lax = [-33.946111, 151.177222];
var syd = [33.9425, -118.408056];
L.marker(lax).addTo(mymap);
L.marker(syd).addTo(mymap);
L.Polyline.Arc(syd, lax, {
color: 'red',
weight: 2,
smoothFactor: 0.5,
vertices: 20
}).addTo(mymap);