2018-10-07 09:35:47 +00:00
$ ( document ) . ready ( function ( ) {
var prePlaceholder = $ ( 'p.geolocationhint' ) ;
var placeholder = $ ( 'div.geolocation div.progress' ) ;
var showError = function ( header , message , code ) {
prePlaceholder . remove ( ) ;
placeholder . remove ( ) ;
2019-03-08 18:40:57 +00:00
var errnode = $ ( document . createElement ( 'div' ) ) ;
errnode . attr ( 'class' , 'error' ) ;
2019-03-16 20:33:19 +00:00
errnode . text ( message ) ;
2019-03-08 18:40:57 +00:00
var headnode = $ ( document . createElement ( 'strong' ) ) ;
headnode . text ( header ) ;
errnode . prepend ( headnode ) ;
$ ( 'div.geolocation' ) . append ( errnode ) ;
2018-10-07 09:35:47 +00:00
} ;
var processResult = function ( data ) {
if ( data . error ) {
showError ( 'Backend-Fehler:' , data . error , null ) ;
} else if ( data . candidates . length == 0 ) {
showError ( 'Keine Bahnhöfe in 70km Umkreis gefunden' , '' , null ) ;
} else {
resultTable = $ ( '<table><tbody></tbody></table>' )
resultBody = resultTable . children ( ) ;
$ . each ( data . candidates , function ( i , candidate ) {
var ds100 = candidate . ds100 ,
name = candidate . name ,
distance = candidate . distance ;
distance = distance . toFixed ( 1 ) ;
var stationlink = $ ( document . createElement ( 'a' ) ) ;
stationlink . attr ( 'href' , ds100 ) ;
stationlink . text ( name ) ;
2019-03-07 17:36:11 +00:00
resultBody . append ( '<tr><td><a href="/s/' + ds100 + '">' + name + '</a></td></tr>' ) ;
2018-10-07 09:35:47 +00:00
} ) ;
placeholder . replaceWith ( resultTable ) ;
}
} ;
var processLocation = function ( loc ) {
2019-03-07 17:36:11 +00:00
$ . post ( '/geolocation' , { lon : loc . coords . longitude , lat : loc . coords . latitude } , processResult ) ;
2018-10-07 09:35:47 +00:00
} ;
var processError = function ( error ) {
if ( error . code == error . PERMISSION _DENIED ) {
showError ( 'Standortanfrage nicht möglich.' , 'Vermutlich fehlen die Rechte im Browser oder der Android Location Service ist deaktiviert.' , 'geolocation.error.PERMISSION_DENIED' ) ;
} else if ( error . code == error . POSITION _UNAVAILABLE ) {
showError ( 'Standort konnte nicht ermittelt werden' , '(Service nicht verfügbar)' , 'geolocation.error.POSITION_UNAVAILABLE' ) ;
} else if ( error . code == error . TIMEOUT ) {
showError ( 'Standort konnte nicht ermittelt werden' , '(Timeout)' , 'geolocation.error.TIMEOUT' ) ;
} else {
showError ( 'Standort konnte nicht ermittelt werden' , '(unbekannter Fehler)' , 'unknown geolocation.error code' ) ;
}
} ;
2019-05-05 10:30:34 +00:00
if ( $ ( 'div.geolocation' ) . length ) {
if ( navigator . geolocation ) {
navigator . geolocation . getCurrentPosition ( processLocation , processError ) ;
} else {
showError ( 'Standortanfragen werden von diesem Browser nicht unterstützt' , '' , null ) ;
}
2018-10-07 09:35:47 +00:00
}
} ) ;