[IOTA Map] Added more info in tooltip

这个提交包含在:
Andreas 2022-12-12 09:26:35 +01:00
父节点 e1444c2abf
当前提交 84ba8d3e3d

查看文件

@ -149,12 +149,14 @@ function addMarker(L, D, mapColor, map) {
iconSize: [60, 10]
});
var markerTitle = D['tag'] + ' - ' + D['prefix'] + ' - ' + D['name'];
// It seems to me that latitudes have the wrong sign to be drawn correctly in leaflet. That's why they are mulitipled with -1 to be drawn in the correct hemisphere.
L.marker(
[D['lat1']*-1, D['lon1']], {
icon: myIcon,
iota: D['tag'],
title: D['tag'],
title: markerTitle,
}
).addTo(map).on('click', onClick);
}