OSM: create closure for selectPlane callback.

This commit is contained in:
antirez 2020-02-03 23:37:18 +01:00
parent db9f5f34a3
commit 115a77445e

View File

@ -59,7 +59,13 @@
var he = document.createElement("P");
he.innerHTML = '>';
var rotation = 45+360-plane.track;
he = '<div style="transform: rotate(-'+rotation+'deg);">✈️</div>';
var selhtml = '';
if (Selected == plane.hex) {
selhtml = 'border:1px dotted #0000aa; border-radius:10px;';
} else {
selhtml = '';
}
he = '<div style="transform: rotate(-'+rotation+'deg); '+selhtml+'">✈️</div>';
var icon = L.divIcon({html: he, className: 'plane-icon'});
return icon;
}
@ -75,6 +81,12 @@
Planes[Selected].marker.setIcon(getIconForPlane(Planes[Selected]));
refreshSelectedInfo();
}
function selectPlaneCallback(hex) {
return function() {
return selectPlane(hex);
}
}
function refreshGeneralInfo() {
var i = document.getElementById('geninfo');
@ -123,7 +135,7 @@
var icon = getIconForPlane(plane);
var marker = L.marker([plane.lat, plane.lon], {icon: icon}).addTo(Map);
var hex = plane.hex;
marker.on('click',function () {selectPlane(hex)});
marker.on('click',selectPlaneCallback(plane.hex));
plane.marker = marker;
marker.planehex = plane.hex;
Planes[plane.hex] = plane;