showError('geolocation.error.PERMISSION_DENIED','Standortanfrage nicht möglich.Vermutlich fehlen die Rechte im Browser oder der Android Location Service ist deaktiviert.');
showError('Standortanfrage nicht möglich.','Vermutlich fehlen die Rechte im Browser oder der Android Location Service ist deaktiviert.','geolocation.error.PERMISSION_DENIED');
}elseif (error.code==error.POSITION_UNAVAILABLE){
showError('geolocation.error.POSITION_UNAVAILABLE','Standort konnte nicht ermittelt werden(Service nicht verfügbar)');
showError('Standort konnte nicht ermittelt werden','(Service nicht verfügbar)','geolocation.error.POSITION_UNAVAILABLE');
}elseif (error.code==error.TIMEOUT){
showError('geolocation.error.TIMEOUT','Standort konnte nicht ermittelt werden(Timeout)');
showError('Standort konnte nicht ermittelt werden','(Timeout)','geolocation.error.TIMEOUT');
}else{
showError('unknown geolocatior.error code','Standort konnte nicht ermittelt werden(unbekannter Fehler)');
showError('Standort konnte nicht ermittelt werden','(unbekannter Fehler)','unknown geolocation.error code');
}
};
@@ -68,6 +72,6 @@ $(document).ready(function() {
$('div.candidatestatus').text('Position wird bestimmt…');
}else{
removeStatus();
showError(null,'Standortanfragen werden von diesem Browser nicht unterstützt');
showError('Standortanfragen werden von diesem Browser nicht unterstützt','',null);