Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified img/hotspot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified img/hotspot_offline.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions js/meta_map.js
Original file line number Diff line number Diff line change
Expand Up @@ -189,15 +189,15 @@ function prepareIcon()
{
var icon = L.icon({
iconUrl: 'img/hotspot.png',
iconSize: [42, 27], // size of the icon
iconAnchor: [21, 13], // point of the icon which will correspond to marker's location
iconSize: [36, 36], // size of the icon
iconAnchor: [18, 18], // point of the icon which will correspond to marker's location
popupAnchor: [0, -9] // point from which the popup should open relative to the iconAnchor
});

var icon_off = L.icon({
iconUrl:'img/hotspot_offline.png',
iconSize: [42, 27], // size of the icon
iconAnchor: [21, 13], // point of the icon which will correspond to marker's location
iconSize: [36, 36], // size of the icon
iconAnchor: [18, 18], // point of the icon which will correspond to marker's location
popupAnchor: [0, -9] // point from which the popup should open relative to the iconAnchor
});

Expand Down