New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

leaflet-virtual-grid

Package Overview
Dependencies
Maintainers
2
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

leaflet-virtual-grid - npm Package Compare versions

Comparing version 1.0.6 to 1.0.7

9

CHANGELOG.md

@@ -8,2 +8,8 @@ # Change Log

## [1.0.7] 2018-07-04
### Fixed
* trap for scenario in which `map.getPixelWorldBounds()` returns null.
## [1.0.6] 2018-03-23

@@ -55,3 +61,4 @@

[Unreleased]: https://github.com/patrickarlt/leaflet-virtual-grid/compare/v1.0.6...HEAD
[Unreleased]: https://github.com/patrickarlt/leaflet-virtual-grid/compare/v1.0.7...HEAD
[1.0.7]: https://github.com/patrickarlt/leaflet-virtual-grid/compare/v1.0.6...v1.0.7
[1.0.6]: https://github.com/patrickarlt/leaflet-virtual-grid/compare/v1.0.5...v1.0.6

@@ -58,0 +65,0 @@ [1.0.5]: https://github.com/patrickarlt/leaflet-virtual-grid/compare/v1.0.4...v1.0.5

@@ -155,2 +155,4 @@ (function (global, factory) {

var cellNumBounds = this._cellNumBounds;
if (!cellNumBounds) return false;
if (

@@ -157,0 +159,0 @@ (!crs.wrapLng && (coords.x < cellNumBounds.min.x || coords.x > cellNumBounds.max.x)) ||

4

package.json
{
"name": "leaflet-virtual-grid",
"version": "1.0.6",
"version": "1.0.7",
"description": "A lightweight DOM-less tile layer for Leaflet that can be used to query APIs with bounding boxes or center/radius as opposed to loading tiles.",

@@ -16,3 +16,3 @@ "files": [

"release": "scripts/release.sh",
"prepublish": "npm run bundle"
"prepare": "npm run bundle"
},

@@ -19,0 +19,0 @@ "repository": {

@@ -158,2 +158,4 @@ import {

var cellNumBounds = this._cellNumBounds;
if (!cellNumBounds) return false;
if (

@@ -160,0 +162,0 @@ (!crs.wrapLng && (coords.x < cellNumBounds.min.x || coords.x > cellNumBounds.max.x)) ||

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc