1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-04-06 10:46:57 +00:00

Display GeoJSON properties on click

This commit is contained in:
jeremy@jermolene.com 2023-03-17 13:05:00 +00:00
parent cd46d9e2ff
commit 0cdf99db9e

View File

@ -101,6 +101,11 @@ GeomapWidget.prototype.renderMap = function(domNode) {
return {
color: (tiddler && tiddler.getFieldString("color")) || "yellow"
}
},
onEachFeature: function(feature,layer) {
if(feature.properties) {
layer.bindPopup(JSON.stringify(feature.properties,null,4));
}
}
}).addTo(self.map);
return layer;