// Generated by CoffeeScript 1.10.0
(function() {
  var base_layer, body, height, map, mbAttr, mbUrl, width;

  body = d3.select('body');

  width = body.node().getBoundingClientRect().width;

  height = body.node().getBoundingClientRect().height;

  d3.select('#map').style({
    width: width,
    height: height
  });

  mbAttr = 'Map data &copy; <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, ' + '<a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>, ' + 'Imagery © <a href="http://mapbox.com">Mapbox</a>';

  mbUrl = 'https://api.tiles.mapbox.com/v4/{id}/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoibWFwYm94IiwiYSI6IjZjNmRjNzk3ZmE2MTcwOTEwMGY0MzU3YjUzOWFmNWZhIn0.Y8bhBaUMqFiPrDRW9hieoQ';

  base_layer = L.tileLayer(mbUrl, {
    id: 'mapbox.streets',
    attribution: mbAttr
  });

  map = L.map('map', {
    center: [43.715378, 10.399152],
    zoom: 13,
    layers: [base_layer]
  });

}).call(this);