Include heading geozone in investments sidebar map

Note that, in this case, we aren't binding a popup to the polygon
because the link would point to the same page we're already in.
This commit is contained in:
Javi Martín
2023-05-23 18:59:41 +02:00
parent de13e789dd
commit a9029be93d
4 changed files with 37 additions and 2 deletions

View File

@@ -211,7 +211,10 @@
className: "map-polygon"
});
polygon.bindPopup(geozone.headings.join("<br>"));
if (geozone.headings !== undefined) {
polygon.bindPopup(geozone.headings.join("<br>"));
}
polygon.addTo(map);
},
openMarkerPopup: function(e) {