aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--web/public/javascripts/map.js16
-rw-r--r--web/public/stylesheets/style.css3
2 files changed, 7 insertions, 12 deletions
diff --git a/web/public/javascripts/map.js b/web/public/javascripts/map.js
index fe33d73..4a1e697 100644
--- a/web/public/javascripts/map.js
+++ b/web/public/javascripts/map.js
@@ -17,18 +17,14 @@ L.geoJson(points, {
//return L.circleMarker(latlng);
return L.marker(latlng);
}
-}).bindPopup(function (layer) {
- // layer.feature.geometry gives you access to all the fields
-
- // show the details of the point in a sidebar
- showDetails(layer)
-
- return "<p>" + JSON.stringify(layer.feature.geometry) + "</p>";
-}).addTo(map)
+}).on('click', showDetails).addTo(map)
// show details about point
-// layer is the dictionary that holds info about the point
-function showDetails(layer) {
+// e is the event info
+function showDetails(e) {
+ // layer.feature.geometry gives you access to all the fields
+ let layer = e.layer
+
let sideBar = document.getElementById('sidebar')
if (getComputedStyle(sideBar).visibility === 'hidden') {
diff --git a/web/public/stylesheets/style.css b/web/public/stylesheets/style.css
index 85d3f10..d8618cd 100644
--- a/web/public/stylesheets/style.css
+++ b/web/public/stylesheets/style.css
@@ -23,8 +23,7 @@ a {
width: 350px;
height: 275px;
max-height: 275px;
-/* overflow: auto;
-*/ position: relative;
+ position: relative;
float: left;
background-color: lightgrey;
border-radius: 10px;