map = {
let h = (width<600) ? width + 200: width * 0.75,
z = (width<600) ? 6.5 : 7,
container = DOM.element('div', { style: `width:${width}px;height:${h}px` });
yield container;
let map = L.map(container).setView([44.6,-69.0], z);
let osmLayer = L.tileLayer('https://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}@2x.png', {
attribution: '© <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
}).addTo(map);
L.TopoJSON = L.GeoJSON.extend({
addData: function (data) {
var geojson, key;
if (data.type === "GeometryCollection") {
for (key in data.objects) {
if (data.objects.hasOwnProperty(key)) {
geojson = topojson.feature(data, data.objects[key]);
L.GeoJSON.prototype.addData.call(this, geojson);
}
}
return this;
}
L.GeoJSON.prototype.addData.call(this, data);
return this;
}
});
L.topoJson = function (data, options) {
return new L.TopoJSON(data, options);
};
let overlay = L.topoJson(zips, {
style: function(feature) {
let zip =feature.properties.ZCTA5CE10, dat = getDataForFeature(zip, 'rebates'),
c = dat ? colorRamp(dat) : '#fff',
o = dat ? 1 : 0;
return {
color : c,
stroke: '#999',
opacity: 1,
weight: 0.5,
fillOpacity: o
}
},
onEachFeature: function(feature, layer) {
let rebates = getDataForFeature(feature.properties.ZCTA5CE10, 'rebates') ?
getDataForFeature(feature.properties.ZCTA5CE10, 'rebates') : 0,
count = getDataForFeature(feature.properties.ZCTA5CE10, 'count') ?
getDataForFeature(feature.properties.ZCTA5CE10, 'count') : 0,
s = (count==1) ? '' : 's';
layer.bindPopup('<p>ZIP code '+feature.properties.ZCTA5CE10+'</p><p>Subsidies paid: $'+rebates+' for ' + count + ' car' + s +'</p>')
}
}).addTo(map);
let legend = L.control({position: 'topleft'})
legend.onAdd = function (map) {var div = L.DomUtil.create('div', 'legend'); return l};
legend.addTo(map);
}