Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
leaflet-arc
Advanced tools
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
Include leaflet-arc.min.js after Leaflet:
<script src='leaflet-arc.min.js'></script>
You can use hosted version from unpkg.com:
<script src='//unpkg.com/leaflet-arc/bin/leaflet-arc.min.js'></script>
Or install from npm:
npm install --save leaflet-arc
Create arcs!
L.Polyline.Arc([43.11667, 131.90000], [55.7522200, 37.6155600]).addTo(map);
You can also change number of vertices in line or use all L.Polyline options:
L.Polyline.Arc([59.56667, 150.80000], [67.50000, 64.03333], {
color: 'red',
vertices: 200
}).addTo(map);
L.Polyline.Arc(from, to, [options])
Returns general L.Polyline
object.
L.LatLng
objects representing the beginning and the end of arc
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 datelineAll L.Polyline
options are also supported.
FAQs
Leaflet.js plugin for drawing Great Circle arcs using arc.js
The npm package leaflet-arc receives a total of 742 weekly downloads. As such, leaflet-arc popularity was classified as not popular.
We found that leaflet-arc demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.