mirror of
https://github.com/stylersnico/librenms.git
synced 2026-08-04 16:12:20 +02:00
Merge pull request #3124 from geordish/fix-geomap-tooltip
Fixed tooltip on geomap.
This commit is contained in:
@@ -190,8 +190,9 @@ var greenMarker = L.AwesomeMarkers.icon({
|
|||||||
$icon = 'redMarker';
|
$icon = 'redMarker';
|
||||||
$z_offset = 10000; // move marker to foreground
|
$z_offset = 10000; // move marker to foreground
|
||||||
}
|
}
|
||||||
$temp_output .= "var title = '<a href=\"" . generate_device_url($map_devices) . "\"><img src=\"".getImageSrc($map_devices)."\" width=\"32\" height=\"32\" alt=\"\">".$map_devices['hostname']."</a>';
|
$temp_output .= "var title = '<a href=\"" . generate_device_url($map_devices) . "\"><img src=\"".getImageSrc($map_devices)."\" width=\"32\" height=\"32\" alt=\"\"> ".$map_devices['hostname']."</a>';
|
||||||
var marker = L.marker(new L.LatLng(".$map_devices['lat'].", ".$map_devices['lng']."), {title: title, icon: $icon, zIndexOffset: $z_offset});
|
var tooltip = '".$map_devices['hostname']."';
|
||||||
|
var marker = L.marker(new L.LatLng(".$map_devices['lat'].", ".$map_devices['lng']."), {title: tooltip, icon: $icon, zIndexOffset: $z_offset});
|
||||||
marker.bindPopup(title);
|
marker.bindPopup(title);
|
||||||
markers.addLayer(marker);\n";
|
markers.addLayer(marker);\n";
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user