
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
leaflet-measure-path-xiaoai
Advanced tools
A plugin to show measurements on paths (polylines, polygons and circles currently supported).
npm install @xiaoai/leaflet-measure-path
This package includes TypeScript definitions. For TypeScript projects:
import 'leaflet';
import '@xiaoai/leaflet-measure-path';
// Now you can use the measurement methods with full type support
const polygon = L.polygon([...])
.addTo(map)
.showMeasurements({
showOnHover: true,
showArea: true
});
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 shownminDistance: Number
(default 30
): the minimum length a line segment in the feature must have for a measurement 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
在Leaflet路径上显示测量值
The npm package leaflet-measure-path-xiaoai receives a total of 237 weekly downloads. As such, leaflet-measure-path-xiaoai popularity was classified as not popular.
We found that leaflet-measure-path-xiaoai demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.