17 lines
479 B
JavaScript
17 lines
479 B
JavaScript
|
|
// ----------------------------------------------------
|
||
|
|
//
|
||
|
|
// This file is to configure the configurable settings
|
||
|
|
//
|
||
|
|
// ----------------------------------------------------
|
||
|
|
|
||
|
|
// The Latitude and Longitude in decimal format
|
||
|
|
var CenterLat = 35.21928;
|
||
|
|
var CenterLon = -80.94406;
|
||
|
|
|
||
|
|
// The google maps zoom level, 0 - 16, lower is further out
|
||
|
|
var ZoomLvl = 9;
|
||
|
|
|
||
|
|
// The default marker color
|
||
|
|
var MarkerColor = "rgb(127, 127, 127)";
|
||
|
|
var SelectedColor = "rgb(225, 225, 225)"
|