From 963d2202a68f3e77a50dfa6bf2a50c52eb748157 Mon Sep 17 00:00:00 2001 From: Sami Mokaddem Date: Fri, 27 Oct 2017 08:58:55 +0200 Subject: [PATCH] Slight ui modif --- templates/geo.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/geo.html b/templates/geo.html index 31a7e4b..30c69df 100644 --- a/templates/geo.html +++ b/templates/geo.html @@ -284,7 +284,7 @@ small { } else { // create new marker var marker = L.marker([coordJson.lat, coordJson.lon]).addTo(allOpenStreetMap[i+1]); savedMarker[i+1] = marker; - marker.bindPopup('lat: '+coordJson.lat+', lon: '+coordJson.lon+' - '+list[i][1]).openPopup(); + marker.bindPopup('lat: '+coordJson.lat+', lon: '+coordJson.lon+' ('+list[i][1]+')').openPopup(); } } });