0

Fix missing titles for markers

This commit is contained in:
Vladislav Glinsky
2018-07-31 00:41:00 +03:00
committed by GitHub
parent 39d9dba814
commit 7de8fa4f17

View File

@@ -302,7 +302,7 @@ overviewer.util = {
} else {
m_icon = icon;
}
let new_marker = new L.marker(latlng, {icon: m_icon});
let new_marker = new L.marker(latlng, {icon: m_icon, title: db.hovertext});
new_marker.bindPopup(db.text);
marker_group.addLayer(new_marker);
}