Merge remote-tracking branch 'openstreetmap/pull/954'

This commit is contained in:
Tom Hughes 2016-03-14 22:11:23 +00:00
commit 16f5a5ac0c

View file

@ -45,6 +45,8 @@ OSM.initializeNotes = function (map) {
} else {
marker = L.marker(feature.geometry.coordinates.reverse(), {
icon: noteIcons[feature.properties.status],
title: feature.properties.comments && feature.properties.comments[0] ?
feature.properties.comments[0].text : undefined,
opacity: 0.8,
clickable: true
});