From 54a87eb34da98aa8b52e39bc8ada8b0127be9f69 Mon Sep 17 00:00:00 2001 From: spslinger <3893604+spslinger@users.noreply.github.com> Date: Tue, 30 Jun 2020 15:15:42 +0200 Subject: [PATCH] Fix typo isArrayBufer in leaflet.shpfile.js --- leaflet.shpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/leaflet.shpfile.js b/leaflet.shpfile.js index a528b1b..17256c1 100644 --- a/leaflet.shpfile.js +++ b/leaflet.shpfile.js @@ -41,7 +41,7 @@ L.Shapefile = L.GeoJSON.extend({ return this; } var promise; - if (this.options.isArrayBufer) { + if (this.options.isArrayBuffer) { promise = this.worker.data(file, [file]); } else { promise = this.worker.data(cw.makeUrl(file));