diff --git a/.gitignore b/.gitignore index bba68c8..8007927 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,5 @@ frames.js *~ *.rej *.orig +untrackedDeveloperSettings.js + diff --git a/public_html/config.js b/public_html/config.js index 85b5836..519fedf 100644 --- a/public_html/config.js +++ b/public_html/config.js @@ -1,15 +1,16 @@ // ---------------------------------------------------- // -// This file is to configure the configurable settings +// This file is to configure the configurable settings. +// Load this file before script.js file at gmap.html. // // ---------------------------------------------------- // The Latitude and Longitude in decimal format -var CenterLat = 35.21928; -var CenterLon = -80.94406; +var CONST_CENTERLAT = 45.0; +var CONST_CENTERLON = 9.0; // The google maps zoom level, 0 - 16, lower is further out -var ZoomLvl = 9; +var CONST_ZOOMLVL = 5; // The default marker color var MarkerColor = "rgb(127, 127, 127)"; diff --git a/public_html/gmap.html b/public_html/gmap.html index ff359ad..7bdd0f2 100644 --- a/public_html/gmap.html +++ b/public_html/gmap.html @@ -1,10 +1,10 @@ -
+ @@ -25,7 +25,7 @@