We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 59279d6 commit 2aa2292Copy full SHA for 2aa2292
doc/developersmap.html
@@ -20,7 +20,8 @@
20
$.getJSON($('link[rel="points"]').attr("href"), function(data) {
21
var geojson = L.geoJson(data, {
22
onEachFeature: function (feature, layer) {
23
- layer.bindPopup(feature.properties.Name);
+ layer.bindPopup("<b>Name:</b> " + feature.properties.Name +
24
+ "<br><b>Committer:</b> " + feature.properties.Committer);
25
}
26
});
27
var map = L.map('developers-map').fitBounds(geojson.getBounds());
0 commit comments