Set focus to selected AC and magnifying MAP in dump1090

For magnification map under selected aircraft and tracing him on the map need add some lines:

config.js
// – Map settings ----------------------------------------
// The Latitude and Longitude in decimal format
CONST_CENTERLAT = 51.0323;
CONST_CENTERLON = 36.7308;
// The google maps zoom level, 0 - 16, lower is further out
CONST_ZOOMLVL = 6;
CONST_ZOOMSEL = 9;

script.js
function selectPlaneByHex(hex) {

SelectedPlane = null;
if (SiteShow) {
resetMap();
}
else {
GoogleMap.setZoom(parseInt(CONST_ZOOMLVL));
}
}
refreshSelected();
refreshTableInfo();
}

planeObject.js
// If this marker is selected we should make it lighter than the rest.
if (this.is_selected == true) {
this.markerColor = SelectedColor;
GoogleMap.setZoom(parseInt(CONST_ZOOMSEL));
GoogleMap.setCenter(new google.maps.LatLng(parseFloat(this.latitude), parseFloat(this.longitude)));
}

Implemented at radar site alexhash.noip.me:8080/