leaflet-virtual-grid
Advanced tools
Comparing version 1.0.6 to 1.0.7
@@ -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)) || |
{ | ||
"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
37094
482