Nähere Infos bei der Geschäftsstelle
//<![CDATA[
$( document ).ready(function() {
var Map = new SearchChMap({ marker:false, poigroups:"-" });
$('.kd-item').each(function(e) {
var concert = { icon: 'http://map.search.ch/api/examples/p1.png'};
concert.center = $(this).find('.kd-place')[0].innerHTML.replace(/\s+/, '');
concert.title = '';
// concert.title = $(this).find('.kd-day')[0].innerHTML + ': ';
// concert.title += $(this).find('.kd-place')[0].innerHTML;
concert.html = '
‚ + $(this).find(‚.kd-weekday‘)[0].innerHTML + ‚, ‚;
concert.html += $(this).find(‚.kd-day‘)[0].innerHTML + ‚ (‚;
concert.html += $(this).find(‚.kd-time‘)[0].innerHTML + ‚)‘;
concert.html += ‚
‚ + $(this).find(‚.kd-place‘)[0].innerHTML + “;
concert.html += $(this).find(‚.kd-text‘)[0].innerHTML
concert.html += $(this).find(‚.kd-text‘)[0].innerHTML
var poi = new SearchChPOI(concert);
// console.debug(concert);
// console.debug(poi);
Map.addPOI(poi);
});
});
//]]>