diff --git a/img/hotspot.png b/img/hotspot.png index f1cbac6..0eeb8ca 100644 Binary files a/img/hotspot.png and b/img/hotspot.png differ diff --git a/img/hotspot_offline.png b/img/hotspot_offline.png index 6840b10..f769ce4 100644 Binary files a/img/hotspot_offline.png and b/img/hotspot_offline.png differ diff --git a/js/meta_map.js b/js/meta_map.js index 520f0fd..88118b5 100644 --- a/js/meta_map.js +++ b/js/meta_map.js @@ -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 });