Skip to content

Commit

Permalink
lint for the lint gods
Browse files Browse the repository at this point in the history
  • Loading branch information
jgravois committed Feb 7, 2019
1 parent d6afd0e commit 8549e2e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion debug/sample.html
Expand Up @@ -33,7 +33,10 @@
<script>
'use strict';

var map = L.map('map').setView([45.526, -122.667], 3);
// deeper than zoom level 15, missing tiles may be encountered
var map = L.map('map', {
maxZoom: 15
}).setView([45.526, -122.667], 15);

// esri hosted basemap
var osm = L.esri.Vector.basemap('OpenStreetMap').addTo(map);
Expand Down
8 changes: 4 additions & 4 deletions src/Basemap.js
Expand Up @@ -24,10 +24,10 @@ export var Basemap = L.Layer.extend({
'DarkGray': '5e9b3685f4c24d8781073dd928ebda50', // no labels
'HumanGeography': '2afe5b807fa74006be6363fd243ffb30', // no labels
'HumanGeographyDetail': '97fa1365da1e43eabb90d0364326bc2d', // no labels
'DarkHumanGeography': 'd7397603e9274052808839b70812be50', // no labels
'DarkHumanGeographyDetail': '1ddbb25aa29c4811aaadd94de469856a', // no labels
'ChartedTerritory': '1c365daf37a744fbad748b67aa69dac8',
'MidCentury': '7675d44bb1e4428aa2c30a9b68f97822'
'DarkHumanGeography': 'd7397603e9274052808839b70812be50', // no labels
'DarkHumanGeographyDetail': '1ddbb25aa29c4811aaadd94de469856a', // no labels
'ChartedTerritory': '1c365daf37a744fbad748b67aa69dac8',
'MidCentury': '7675d44bb1e4428aa2c30a9b68f97822'
// 'ModernAntique': 'effe3475f05a4d608e66fd6eeb2113c0' // throws mismatched image size error
}
},
Expand Down

0 comments on commit 8549e2e

Please sign in to comment.