Working on making an options window
This commit is contained in:
parent
ca314fcf2c
commit
4752578b8b
|
@ -525,3 +525,15 @@ function selectPlaneByHex(hex) {
|
|||
refreshSelected();
|
||||
refreshTableInfo();
|
||||
}
|
||||
|
||||
function resetMap() {
|
||||
GoogleMap.setZoom(parseInt(localStorage['ZoomLvl']));
|
||||
GoogleMap.setCenter(new google.maps.LatLng(parseFloat(localStorage['CenterLat']), parseFloat(localStorage['CenterLon'])));
|
||||
Selected = null;
|
||||
refreshSelected();
|
||||
}
|
||||
|
||||
function settingToggle() {
|
||||
console.log("Settings Click");
|
||||
$("#options").toggleClass("notvisable");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue