Skip to content

Commit a59a22b

Browse files
author
Nicholas Thomson
committed
Use correct property for marker popup
1 parent d0120a6 commit a59a22b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/scripts/directives/leafCluster.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ angular.module('crunchinatorApp.directives').directive('leafCluster', function()
4343
});
4444
var geoJsonLayer = L.geoJson(data, {
4545
onEachFeature: function (feature, layer) {
46-
layer.bindPopup(feature.properties.address);
46+
layer.bindPopup(feature.properties.name);
4747
}
4848
});
4949
markers.addLayer(geoJsonLayer);

0 commit comments

Comments
 (0)