diff --git a/public_html/script.js b/public_html/script.js
index d6048ba..1d14d0c 100644
--- a/public_html/script.js
+++ b/public_html/script.js
@@ -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");
+}