|
|
@ -41,10 +41,24 @@ function initialLoad() {
|
|
|
|
processAfterInitializationMap();
|
|
|
|
processAfterInitializationMap();
|
|
|
|
//Access gps and make zoom to server location as map center
|
|
|
|
//Access gps and make zoom to server location as map center
|
|
|
|
//navigator.geolocation.getCurrentPosition(success, error);
|
|
|
|
//navigator.geolocation.getCurrentPosition(success, error);
|
|
|
|
|
|
|
|
setPageTitle();
|
|
|
|
$("#loading").hide();
|
|
|
|
$("#loading").hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function setPageTitle() {
|
|
|
|
|
|
|
|
var hash = window.parent.location.hash;
|
|
|
|
|
|
|
|
if(hash) {
|
|
|
|
|
|
|
|
var startIdx = hash.indexOf("/") + 1;
|
|
|
|
|
|
|
|
var lastIdx = hash.length;
|
|
|
|
|
|
|
|
var deviceInfoString = hash.substring(startIdx,lastIdx);
|
|
|
|
|
|
|
|
var deviceInfo = JSON.parse(deviceInfoString);
|
|
|
|
|
|
|
|
if(deviceInfo) {
|
|
|
|
|
|
|
|
var newTitle = " Geo Dashboard - Device ID: " + deviceInfo.device.id + " Type: " + deviceInfo.device.type;
|
|
|
|
|
|
|
|
window.parent.document.title = newTitle;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//function success(position) {
|
|
|
|
//function success(position) {
|
|
|
|
// var browserLatitude = position.coords.latitude;
|
|
|
|
// var browserLatitude = position.coords.latitude;
|
|
|
|