
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
leaflet-measure-path-2
Advanced tools
This is a fork of leaflet-measure-path, which seems to no longer be maintained. It fixes some issues from the outstanding Pull Requests of that project, updates the version of leaflet used in the tests and example, and updates the tests.
Load leaflet-measure-path.js
and leaflet-measure-path.css
. Then, to enable measurements on a path:
var polygon = L.polygon([ ... ])
.addTo(map)
.showMeasurements();
To later hide measurements:
var polygon = L.polygon([ ... ])
.addTo(map)
.hideMeasurements();
The simplest way to enable measurements for a path is to pass the option showMeasurements: true
when
creating the path. To control the measurement options, you can also pass measurementOptions
, see options below.
The plugin also adds the methods listed below to Leaflet's L.Polyline
, L.Polygon
and L.Circle
classes.
Enables measurements. You can also overide the defaults by passing an options object.
showOnHover: Boolean
(default false
): if true
, the measurements will only show when the user hovers the cursor over the pathshowTotalDistance: Boolean
(default true
): if false
, the total length of polyline will not be shownminPixelDistance: Number
(default 30
): the minimum pixel length a line segment in the feature must have for a measurement label to be addedformatDistance: Function
: allows to override the built-in function that formats a distance in meters to the string shown in the mapformatArea: Function
: allows to override the built-in function that formats an area in square meters to the string shown in the mapDisables measurements.
Updates the measurements displayed. Normally, this method is called automatically if the path's geometry is changed using setLatLngs
, spliceLatLngs
or when the map is zoomed. If the geometry is somehow changed by other means, this method can be called to force the measurements to update.
FAQs
Show measurements on Leaflet paths
The npm package leaflet-measure-path-2 receives a total of 0 weekly downloads. As such, leaflet-measure-path-2 popularity was classified as not popular.
We found that leaflet-measure-path-2 demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.