From fdb6e5c171da5ebaf91d09c84647d95ce4e530ca Mon Sep 17 00:00:00 2001 From: Kumar Damani Date: Tue, 26 Feb 2019 22:27:26 -0700 Subject: fixed spaces to indents --- web/public/javascripts/map.js | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'web/public/javascripts/map.js') diff --git a/web/public/javascripts/map.js b/web/public/javascripts/map.js index 414efee..d2afeb4 100644 --- a/web/public/javascripts/map.js +++ b/web/public/javascripts/map.js @@ -5,17 +5,15 @@ // different basemap L.tileLayer('https://stamen-tiles-{s}.a.ssl.fastly.net/toner-lite/{z}/{x}/{y}{r}.{ext}', { - attribution: 'Map tiles by Stamen Design, CC BY 3.0 — Map data © OpenStreetMap contributors', - subdomains: 'abcd', - minZoom: 0, - maxZoom: 13, - ext: 'png' + attribution: 'Map tiles by Stamen Design, CC BY 3.0 — Map data © OpenStreetMap contributors', + subdomains: 'abcd', + minZoom: 0, + maxZoom: 13, + ext: 'png' }).addTo(map); // Create point feature for somewhere downtown var myDataPoint = L.marker([43.6529, -79.3849]).addTo(map); // Bind popup to Data Point object -// myDataPoint.bindPopup("This is my city"); -// i can add regular html to this too - neat! myDataPoint.bindPopup("

City Hall (not really)

Toronto, ON
Information about city hall.

"); -- cgit v1.2.3