+ var popup_text = "<h2>" + feature.attributes['label'] + '</h2>\n' +
+ '<ul>\n' +
+ '<li><a href="' + feature.attributes['url'] + '">Details zur Rodelbahn</a></li>\n' +
+ '<li>Rodelbahnzustand<br/>';
+ if ('date_report' in feature.attributes && 'condition' in feature.attributes) {
+ var condition_text = {1: 'Sehr gut', 2: 'Gut', 3: 'Mittelmäßig', 4: 'Schlecht', 5: 'Geht nicht'};
+ var year_month_day = feature.attributes['date_report'].split('-');
+ popup_text += '<a href="' + feature.attributes['url'] + '#Eintr.C3.A4ge">' + condition_text[feature.attributes['condition']] + '</a> ' +
+ '<small>' + year_month_day[2] + '.' + year_month_day[1] + '.</small> ' +
+ '<em><a href="' + feature.attributes['url'] + '#Eintragen">Neu</a></em>';
+ } else {
+ popup_text += '<em><a href="' + feature.attributes['url'] + '#Eintragen">Bitte eintragen</a></em>';
+ }
+ popup_text += '</li>\n</ul>\n';