
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
leaflet.locationfilter
Advanced tools
Provides a location filter for Leaflet. In short, the location filter is a draggable/resizable rectangle. It is integrated with your application through a set of callbacks that are called when the user interacts with the filter.
leaflet-locationfilter is developed by Tripbirds.com. You may see it in action here.
Another similar plugin is Leaflet.AreaSelect, which solves the same problem, but with a fixed and centered rectangle, that can't be moved, and that has support for locking the aspect ratio of the selection.
Create a new LocationFilter and add it to the map:
var locationFilter = new L.LocationFilter().addTo(map);
Bind some events:
locationFilter.on("change", function (e) {
// Do something when the bounds change.
// Bounds are available in `e.bounds`.
});
locationFilter.on("enabled", function () {
// Do something when enabled.
});
locationFilter.on("disabled", function () {
// Do something when disabled.
});
Get the current bounds:
var bounds = locationFilter.getBounds();
Check if the location filter is enabled:
var isEnabled = locationFilter.isEnabled();
bounds (optional): The initial bounds for the location filter. Defaults to the maps own bounds.
enable (optional): Set to true to enable the filter as soon as it is added to the map. Defaults to false.
buttonPosition: Set to position the associated buttons on the map. Defaults to 'topleft'.
change: Fired when the location filter changes size or position.
enabled:: Fired when the location filter gets enabled.
disabled: Fired when the location filter gets disabled.
enableClick: Fired when the user clicks the enable button.
disableClick: Fired when the user clicks the disable button.
adjustToZoomClick: Fired when the user clicks the adjust button.
leaflet-locationfilter is free software, and may be redistributed under the MIT-LICENSE.
FAQs
Provides a location filter for Leaflet.
The npm package leaflet.locationfilter receives a total of 2 weekly downloads. As such, leaflet.locationfilter popularity was classified as not popular.
We found that leaflet.locationfilter 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
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.