Added untrackedDeveloperSettings to this branch too.

Load devel settings file after config.js and settings are saved for
developers even after merges.

	modified:   .gitignore
	modified:   public_html/config.js
	modified:   public_html/gmap.html
	modified:   public_html/script.js

Example file
--- untrackedDeveloperSettings.js ---
// Load this file after config.js so these settings are used

var CONST_CENTERLAT = 35.21928;
var CONST_CENTERLON = -80.94406;
var CONST_ZOOMLVL   = 9;
--- untrackedDeveloperSettings.js END ---
This commit is contained in:
terribl 2013-05-25 11:56:32 +03:00
parent 8b5c74ded8
commit 9c465c174b
4 changed files with 14 additions and 11 deletions

View file

@ -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)";