Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/origin/develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
Raruto committed Jun 24, 2019
2 parents a197fd9 + 7269aae commit 848e442
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion dist/leaflet-kmz-src.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/leaflet-kmz-src.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/leaflet-kmz.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/leaflet-kmz.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "leaflet-kmz",
"version": "0.2.3",
"version": "0.2.4",
"description": "A KMZ file loader for Leaflet Maps",
"main": "dist/leaflet-kmz.js",
"module": "src/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/KMZLoader.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ L.KMZLoader = L.Class.extend({
initialize: function(opts) {
L.setOptions(this, opts);
// Optimized GeoJSON Vector Tiles through "geojson-vt.js" library.
this.tiled = 'geojsonvt' in window && this.options.tiled;
this.tiled = ('geojsonvt' in window || geojsonvt) && this.options.tiled;
// Standard Mouse interactions through default "leaflet.js" layers.
this.interactive = this.options.interactive;
// (Experimental) Optimized Mouse interactions through "geojson-vt.js" and "leaflet-pointable.js" libraries.
Expand Down

0 comments on commit 848e442

Please sign in to comment.