// Mapbox access token. You'll want to use your own L.mapbox.accessToken = 'pk.eyJ1IjoibWFwdGFzdGlrIiwiYSI6IjNPMkREV1kifQ.2KGPFZD0QaGfvYzXYotTXQ'; // Initialize the map, set the minimum and maximum zoom, and specify starting zoom and center var map = L.map('map', { minZoom: 11, maxZoom: 16 }).setView([38.046441, -84.497019], 11); // Add Stamen Toner basemap var base = L.tileLayer('http://stamen-tiles-{s}.a.ssl.fastly.net/toner/{z}/{x}/{y}.png', { attribution: 'Map tiles by Stamen Design, CC BY 3.0 — Map data © OpenStreetMap', subdomains: 'abcd', ext: 'png' }).addTo(map); // This is where you add the parcels layer you made in Tilemill! L.mapbox.tileLayer('maptastik.lex-parcels').addTo(map); // Then whatever features (vacant parcels, some kind of point feature...really any feature) can be added below