Merge remote-tracking branch 'upstream/master'

This commit is contained in:
terribl 2013-05-23 13:16:14 +03:00
commit 143606209e
3 changed files with 96 additions and 29 deletions

View file

@ -4,6 +4,9 @@
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<!-- For developers -->
<script type="text/javascript" src="untrackedDeveloperSettings.js"></script>
<link rel="stylesheet" type="text/css" href="style.css" />
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?sensor=true"></script>

View file

@ -1,9 +1,13 @@
if (typeof(developerSettings) === 'undefined') { // If not developers
// "Constant" variables - Since there is no constants in make sure
// not to change these CONST_ variables.
var CONST_CENTERLAT = 45.0; // 45.0
var CONST_CENTERLON = 9.0; // 9.0
var CONST_ZOOMLVL = 5; //5
} // End of !developerSettings
// Global variables
var Map = null;
var CenterLat = CONST_CENTERLAT;