
// Global
//var googleMapOptionRegEx = /.{[\s\S]*?}\;/;
var googleMapOtherOptionRegEx = /.map[0-9] = {[\s\S]*?}\;/g;
var googleMapOptionRegEx = /.googleMapTimetableConfig = {[\s\S]*?}\;/g;
var googleMapNumberRegEx = /.map[0-9] =/;

var ajaxAdditionParam = '&type=887&tx_twwctimetable_pi1[format]=ajax';
var googleMapPlugin = null;
var googleMapOption;
var googleMapTimetableConfig = null;


var map1;
var map2;
var map3;
var map4;
var map5;

$(document).ready(function() {
	// Tool: Custom Scrollbar

	//$(".left").jScrollPane({showArrows: false});
	
	// Tool: Hide/Show Tool Content on Default
	$(".tool .main").hide();
	$(".tool .close").hide();
	var tabClass = $(".tool").attr("class").split(' ').slice(-1);
	
	if ($(".tool:not(.open)").hasClass("zvb")) {
	}
	else {
		if ($(".tool").hasClass(tabClass)) {
			$(".tool .main." + tabClass).slideDown(750);
			$(".tool").addClass("open");
			$(".tool .close").show();
		};
	};
	if (window.location.href.search("tx_twwctimetable_pi1") > 0) {
		if ($(".tool").hasClass(tabClass)) {
			$(".tool .main." + tabClass).slideDown(750);
			$(".tool").addClass("open");
			$(".tool .close").show();
		};
	};
	
	// Add google maps to the status tab
	if(tabClass == 'status'){
		$("#map-status").append('<div id="Tx_TwwcTimetable_Map" style="height: 800px;"></div>');
		googleMapPlugin = new Tx_AdGoogleMaps_Plugin(googleMapOptionStatus);
	}
	
	if ( $("#map-timetable").length > 0 && tabClass == 'zvb') {
		
		$("#map-timetable").append('<div id="Tx_TwwcTimetable_Map" style="height: 800px;"></div>');
		googleMapPlugin = new Tx_AdGoogleMaps_Plugin(googleMapTimetableConfig );
		initialize();
	}

	// Tool: Tabs Action
	var tabClass = "";
	$(".tabs a").click(function(){
		tabClass = $(this).attr("class").split(' ')[0];
		changeTab(tabClass);
		return false;
	});

	// Tool Form: Open Dropdown
	$(".select-line input, .select-station input").focus(function(){
		$(this).parent().parent(".custom-select").addClass("dropdown-open");
		$(this).parent().parent().find(".dropdown").slideDown();
	});
	$(".select-line input, .select-station input").focusout(function(){
		$(this).parent().parent(".custom-select").removeClass("dropdown-open");
		$(this).parent().parent().find(".dropdown").fadeOut();
	});
	$(".select-line .arrow, .select-station .arrow").click(function(){
		$(this).parent(".custom-select").toggleClass("dropdown-open");
		$(this).parent().find(".dropdown").slideToggle();
	});

	$(".select-station input, .select-line input").keyup(function () {
	    var filter = $(this).val(), count = 0;
	    var RegEx
	    $(this).parent().parent().find(".dropdown li").highlightRegex();
        try { RegEx = new RegExp($(this).val(), "ig") }
        catch (e) { $("#.select-station input").addClass("error") }
        
        $(this).highlightRegex(new RegExp(filter, "i"));
        $(this).parent().parent().find(".dropdown li").each(function () {
	        if ($(this).text().search(new RegExp(filter, "i")) < 0) {
	            $(this).addClass("hidden");
	        } else {
	            $(this).removeClass("hidden");
	    	    $(this).highlightRegex(new RegExp(filter, "ig"));
	        }
	    });
	});

	
	// Tool: Show Tool Content
	$(".maxi .dropdown a").click(function(){
		var selectedOption = jQuery.trim($(this).text());
		$(this).parent().parent().parent().parent().find("input").val(selectedOption);
		$(this).parent().parent().parent().parent(".custom-select").removeClass("dropdown-open");
		$(this).parent().parent().parent(".dropdown").slideUp();
		
		return false
	});
	
	// Tool: Close Tool Content
	$(".tool .close").click(function(){
		if ($(".tool").hasClass("open")) {
			$(".tool .main").slideUp(750);
			$(".tool .close span").html("Fahrplan &ouml;ffnen");
		}
		else {
			var tabClass = $(".tool").attr("class").split(' ').slice(-1);
			$(".tool .main." + tabClass).slideDown(750);
		
		};
		$(".tool").toggleClass("open");
		return false
	});

	// Tool: Linien-Netzplan
	$(".draggable").drag();
	
	// Tool: Draggable/Zoomable Map

	$(".tool .lines-all img").width("100%");
	var mapContainerWidth = $(".tool .map").width();
	var mapContainerHeight = $(".tool .map").height();
	
	$(".lines-all .zoom-in, .lines-all .zoom-out").click(function(){
		var mapImgWidth = $(this).parent().parent().find("img").width();
		var mapImgHeight = $(this).parent().parent().find("img").height();
		var mapImgLeftPos = parseInt($(this).parent().parent().find("img").css("left"));
		var mapImgTopPos = parseInt($(this).parent().parent().find("img").css("top"));
		if ($(this).hasClass("zoom-in")) {
			mapImgWidth +=400;
			mapImgLeftPos = mapImgLeftPos-200;
			mapImgTopPos = mapImgTopPos-140;
		}
		else {
			mapImgWidth +=-400;
			mapImgLeftPos = mapImgLeftPos+200;
			mapImgTopPos = mapImgTopPos+140;
		}
		$(this).parent().parent().find("img").animate({
			width: mapImgWidth,
			left: mapImgLeftPos,
			top: mapImgTopPos
			}, 500, function() {
		});
		return false
	});
	
	
	
	// ajax request from the form (google map address search)
	$(".ajaxform").submit(function(){
		$(".loading").show();
		$.ajax({  
			type: 'POST',  
			url:this.action,  
			data: $.param($(this).serializeArray())+ajaxAdditionParam,  
			success: function(data) {
		    	$(".loading").delay(500).fadeOut(500);
				changeAjaxContent(data);
			}  
		});  
		return false;
	});
	
	// ajax request from the dropdown menu
	$(".ajax").click(function(){
		
		$(".loading").show();
		var url = this + ajaxAdditionParam;
		var isLineMap = $(this).parents().hasClass("line-map");
	
		if(isLineMap === true){
			$(".tool .line-map").slideUp(750,function(){
				
				$(".tool").toggleClass("open");
				$(".tabs").find("a").removeClass("active");
				$(".tool a.zvb").addClass("active");
				$(".tool").removeClass("zvb sbb lines status");
				$(".tool").addClass("zvb");
				
				$.ajax({
				    url: url,
				    success: function(data) {
				    	changeAjaxContent(data);
				    	$(".loading").delay(500).fadeOut(500);
				    }
				});
			});
			
		} else {
			$.ajax({
			    url: url,
			    success: function(data) {
			    	changeAjaxContent(data);
			    	$(".loading").delay(500).fadeOut(500);
			    }
			});
		}
		
		return false;
	});
	
	/**
	 * change ajax content
	 * 
	 * @param string data [the html data from typo3]
	 */
	function changeAjaxContent(data){
		
    	while(mapData = googleMapOtherOptionRegEx.exec(data)){
    	
    		var mapId = (String(googleMapNumberRegEx.exec(mapData)));
    		
    		mapData = (String(mapData));
    		mapData = mapData.replace(googleMapNumberRegEx,"");

			eval(mapId+mapData);
			
    	}
    	
    	//eval('googleMapOption='+googleMapOptionRegEx.exec(data));
    	
    	eval('googleMapOption='+data.match(googleMapOptionRegEx));
    	
    	if(googleMapPlugin !== null){
			googleMapPlugin.closeAllInfoWindows();
		}
    	
    	
    	document.getElementById("main-zvb").innerHTML = data;
    
    	var i = 0
    	
		$(".tool .main.zvb").delay(250).slideDown(750, function(){
		
			// warum wird diese funktion teilweise 2x aufgerufen?
			if(i == 0){
				
				$("#map-timetable").append('<div id="Tx_TwwcTimetable_Map" style="height: 800px;"></div>');
				
				googleMapPlugin = new Tx_AdGoogleMaps_Plugin(googleMapOption);
				initialize();
			}
			i++;

		});
		$(".tool .form").removeClass("closed");
		$(".tool .close").delay(250).slideDown(750);
		$(".tool").delay(250).removeClass("default");
		$(".tool").delay(250).addClass("open");
		$(".stations ul li").find(".bullet").append("<em></em>");
	}
	
	var input = document.getElementById('searchTextField');
    
	if(input !== null){
		var options = {
		  bounds: defaultBounds,
		  types: ['geocode']
		};
	
		var autocomplete = new google.maps.places.Autocomplete(input, options);
	}
	
	$(".map-link-status").click(function(){
		// get the class station and returns the number of this station
		var station = (String($(this).attr("class").split(' ').slice(-1))).replace("station-","");
		googleMapPlugin.panTo('Marker_'+station); 
		googleMapPlugin.openInfoWindow('InfoWindow_'+station);
		
		return false;
	});
	
	
	
	
});

/**
 * initialize
 * 
 * initialize all needed functions after ajax call
 */
function initialize(){
	
	$(".ajax-inner").click(function(){

		$(".loading").show();
		var url = this + ajaxAdditionParam;
		
		$.ajax({
		    url: url,
		    success: function(data) {
		    	
		    	googleMapPlugin.closeAllInfoWindows();
		    	
		    	eval('googleMapOption='+data.match(googleMapOptionRegEx));
		    	document.getElementById("main-zvb").innerHTML = data;
		    	
		    	$("#map-timetable").append('<div id="Tx_TwwcTimetable_Map" style="height: 800px;"></div>');
		    	
		    	googleMapPlugin = new Tx_AdGoogleMaps_Plugin(googleMapOption);
		    	
		    	initialize();
		    	$(".loading").delay(500).fadeOut(500);
		    }
		});
	
		return false;
	});
	
	//show the polylines of the route
	/*
	$(".ajax-line").mouseenter(function(){
		googleMapPlugin = new Tx_AdGoogleMaps_Plugin(eval(this.id));
		return false;
	}).mouseleave(function(){
		googleMapPlugin = new Tx_AdGoogleMaps_Plugin(googleMapOption); 
    });
	 */
	
	
	
	$(".map-link").click(function(){
		// get the class station and returns the number of this station
		var station = (String($(this).attr("class").split(' ').slice(-1))).replace("station-","");
		googleMapPlugin.panTo('Marker_'+station); 
		googleMapPlugin.openInfoWindow('InfoWindow_'+station);
		
		return false;
	});
	
	// Tool: Toggle Legend
	$(".legend h3").click(function(){
		$(".tool .left").toggleClass("legend-closed");
		return false;
	});
	
	
	$(".line-details .stations ul .current .bullet, .legend .bullet-legend .bullet").append("<em></em>");
	$('.stations').scrollTo(0);
	$(".line-details .stations ul a:first-child").click(function(){
		var stationNumber = (String($(this).attr("class").split(' ').slice(-1))).replace("station-","");
		changeBusStation(stationNumber);
		return false
	});
	
	$(".error-message a.show-all-messages").click(function(){
		changeTab('status');
		return false
	});
	$(".error-message p").hide();
	$(".error-message h4").click(function(){
		$(this).next().toggle();
		$(this).toggleClass("open");
		return false
	});
	
}

/**
 * change the tab
 * 
 * @param string tabClass name of the tab (zvb, sbb, lines, status)
 */
function changeTab(tabClass){
	
	if(!tabClass){
		tabClass = 'status';
	}

	$(".tabs").find("a").removeClass("active");
	$(".tool a."+tabClass).addClass("active");
	$(".tool").removeClass("zvb sbb lines status");
	$(".tool").addClass("open");
	$(".tool .close span").html("Fahrplan schliessen");
	$(".tool").addClass(tabClass);
	$(".tool .close").delay(250).slideDown(750);
	$(".tool .main").slideUp(750);
	$(".tool .main." + tabClass).slideDown(750);
	
	
	$("#Tx_TwwcTimetable_Map").remove();
	
	
	if(tabClass == 'status'){
		
		$("#map-status").append('<div id="Tx_TwwcTimetable_Map" style="height: 800px;"></div>');
		googleMapPlugin = new Tx_AdGoogleMaps_Plugin(googleMapOptionStatus);
		
	} else if(tabClass == 'zvb' && googleMapOption){
		$("#map-timetable").append('<div id="Tx_TwwcTimetable_Map" style="height: 800px;"></div>');
		googleMapPlugin = new Tx_AdGoogleMaps_Plugin(googleMapOption);
	} else if($("#map-timetable").length > 0 && tabClass == 'zvb') {
		$("#map-timetable").append('<div id="Tx_TwwcTimetable_Map" style="height: 800px;"></div>');
		googleMapPlugin = new Tx_AdGoogleMaps_Plugin(googleMapTimetableConfig );
	}
	
	return false;
}

function changeBusStation(stationNumber){
	
	var station = ".station-"+stationNumber;
	var stationName = $(station).html();
	
	//999999 address search position marker
	if(stationNumber != 999999 && stationName != null){
		
		$(station).parent().parent().find("li").removeClass("current");
		$(station).parent().parent().find("em").remove();
		$(station).parent().addClass("current");
		$(station).parent().find(".bullet").append("<em></em>");
		$(station).parent().prevAll().addClass("past");
		$(station).parent().nextAll().removeClass("past");
		$("#line-details-station-name").html(stationName);
		
		if ($(station).parent().is('li:nth-child(-n+11)')){
			$(".stations").scrollTo(0, 500);
		} else {
			$(".stations").scrollTo($(station), 500);
		}
	}
	return false
}

/**
 * This function is used to change the route
 * @param String route
 * @param String station
 * @returns {Boolean}
 */
function loadRoute(route,station){
	
	$(".loading").show();
	
	var url = location.protocol + '//' + location.host + location.pathname + '?tx_twwctimetable_pi1[currentRouteName]='+route+'&tx_twwctimetable_pi1[station]='+station+'&tx_twwctimetable_pi1[action]=showStationRoute&tx_twwctimetable_pi1[controller]=Net' + ajaxAdditionParam;
	
	$.ajax({
	    url: url,
	    success: function(data) {
	    	
	    	googleMapPlugin.closeAllInfoWindows();
	    	
	    	eval('googleMapOption='+data.match(googleMapOptionRegEx));
	    	document.getElementById("main-zvb").innerHTML = data;
	    	$("#map-timetable").append('<div id="Tx_TwwcTimetable_Map" style="height: 800px;"></div>');
	    	
	    	
	    	googleMapPlugin = new Tx_AdGoogleMaps_Plugin(googleMapOption);
	    	
	    	initialize();
	    	$(".loading").delay(500).fadeOut(500);
	    }
	});

	return false;
}


/**
 * Open the infobox marker from the link inside the infobox
 * Must be outside from jquery, otherwise this function won't work from the infobox link
 * 
 * @param integer station
 */
function openGoogleMapMarker(station){
	googleMapPlugin.panTo('Marker_'+station); 
	googleMapPlugin.openInfoWindow('InfoWindow_'+station);
	changeBusStation(station);
}



//{'uid' : 'Polyline_4','drawFunctionName' : 'drawPolyline','options' : {'path' : new google.maps.MVCArray([new google.maps.LatLng(47.17371151287572,8.515342174048083),new google.maps.LatLng(47.171564060822455, 8.514111737563503),new google.maps.LatLng(47.17097655729835, 8.51389357912315),new google.maps.LatLng(47.17068481245465, 8.513636087057721),new google.maps.LatLng(47.169196888822945, 8.514365647909772),new google.maps.LatLng(47.16835079601056, 8.514751886007916),new google.maps.LatLng(47.16777056061114, 8.515750285353114),new google.maps.LatLng(47.165616943303675, 8.515179346220103),new google.maps.LatLng(47.16604585412043, 8.516082261679303),new google.maps.LatLng(47.16607503122508, 8.517455552694928),new google.maps.LatLng(47.16645433212725, 8.518828843710553),new google.maps.LatLng(47.168428171369236, 8.522358884222214),new google.maps.LatLng(47.16972204309963, 8.524193261740338),new google.maps.LatLng(47.17039306600834, 8.525309060690534),new google.maps.LatLng(47.170859859553225, 8.525695298788678),new google.maps.LatLng(47.171530868086435, 8.525995706198346),new google.maps.LatLng(47.171705912396526, 8.526339028952291),new google.maps.LatLng(47.17144334571507, 8.528184388754498),new google.maps.LatLng(47.17141382658803, 8.530070401190603),new google.maps.LatLng(47.1718809561298, 8.53213260042442),new google.maps.LatLng(47.17357301580593, 8.535909150717389),new google.maps.LatLng(47.17485661132257, 8.539084886191022),new google.maps.LatLng(47.17520667744229, 8.54011485445274),new google.maps.LatLng(47.1754108816132, 8.542046044943502),new google.maps.LatLng(47.1753233656359, 8.54286143648399),new google.maps.LatLng(47.175731772295016, 8.543891404745748),new google.maps.LatLng(47.17625686195538, 8.545007203695944),new google.maps.LatLng(47.17686945999668, 8.545736764547955),new google.maps.LatLng(47.17759873416439, 8.546466325400006),new google.maps.LatLng(47.17825502774974, 8.54841655199706),new google.maps.LatLng(47.17824048714656, 8.54882666933315),new google.maps.LatLng(47.17789044102713, 8.548483346579205),new google.maps.LatLng(47.17733619661814, 8.547753785727155),new google.maps.LatLng(47.17646106208796, 8.54736754762901),new google.maps.LatLng(47.17529419361149, 8.547839616415631),new google.maps.LatLng(47.17447737042199, 8.548311685202252),new google.maps.LatLng(47.17459406021825, 8.54861209261196),new google.maps.LatLng(47.17526502157123, 8.54882666933315),new google.maps.LatLng(47.175636618808426, 8.549417658628853),new google.maps.LatLng(47.175731772295016, 8.549985383627545),new google.maps.LatLng(47.17564425684681, 8.550285791037213),new google.maps.LatLng(47.17520667744229, 8.550414537069967),new google.maps.LatLng(47.17479826674478, 8.550242875692975),new google.maps.LatLng(47.17447737042194, 8.550199960348737),new google.maps.LatLng(47.173864744784055, 8.55084369051235),new google.maps.LatLng(47.173368804567694, 8.551659082052838),new google.maps.LatLng(47.17319376573859, 8.552388642904928),new google.maps.LatLng(47.17290203307445, 8.552560304281842),new google.maps.LatLng(47.17240608386755, 8.552731965658795),new google.maps.LatLng(47.17188095612974, 8.552817796347272),new google.maps.LatLng(47.17147251985503, 8.5536331878878),new google.maps.LatLng(47.170801510584546, 8.554319833395612),new google.maps.LatLng(47.17024719218415, 8.55436274873985),new google.maps.LatLng(47.16956989544621, 8.553512898068293),new google.maps.LatLng(47.168350796010735, 8.553289865133932),new google.maps.LatLng(47.16782562817585, 8.552989457724225),new google.maps.LatLng(47.166510688710325, 8.553581079482647),new google.maps.LatLng(47.16537477629044, 8.554148172018659),new google.maps.LatLng(47.16458697845496, 8.55436274873985),new google.maps.LatLng(47.16433296743275, 8.555514188588637),new google.maps.LatLng(47.16412012978009, 8.556980584738385),new google.maps.LatLng(47.16394506046934, 8.557280992148053),new google.maps.LatLng(47.1630697052612, 8.556937669394186),new google.maps.LatLng(47.162194335629295, 8.557023500082623),new google.maps.LatLng(47.161085513389594, 8.557710145590436),new google.maps.LatLng(47.160385192684146, 8.557624314902279),new google.maps.LatLng(47.15956814019258, 8.558225129721535),new google.maps.LatLng(47.15857598813229, 8.558010553000424),new google.maps.LatLng(47.157496272192446, 8.559298013327531),new google.maps.LatLng(47.15685426852965, 8.560199235556535),new google.maps.LatLng(47.1561830745884, 8.560499642966244),new google.maps.LatLng(47.155395140448235, 8.56032798158929),new google.maps.LatLng(47.15484066127182, 8.5601134048681),new google.maps.LatLng(47.154461277449144, 8.560199235556535),new google.maps.LatLng(47.15411338001361, 8.561103395719236),new google.maps.LatLng(47.15352739803878, 8.562259172080013),new google.maps.LatLng(47.15273942452103, 8.562988732932064),new google.maps.LatLng(47.151893069580865, 8.563289140341771),new google.maps.LatLng(47.149966832231584, 8.563932870505306),new google.maps.LatLng(47.149412296416614, 8.564147447226498),new google.maps.LatLng(47.1486534485573, 8.564018701193742),new google.maps.LatLng(47.14824483368388, 8.5640616165379),new google.maps.LatLng(47.147923776936864, 8.564662431357357),new google.maps.LatLng(47.14786374837891, 8.565455537854033),new google.maps.LatLng(47.14751515645473, 8.566507791159683),new google.maps.LatLng(47.14666871831906, 8.56732318270025),new google.maps.LatLng(47.14611414809423, 8.567752336142632),new google.maps.LatLng(47.145763890234385, 8.567923997519546),new google.maps.LatLng(47.14535525314765, 8.567666505454117),new google.maps.LatLng(47.14494661291959, 8.567366098044488),new google.maps.LatLng(47.14398337709597, 8.56835315096193),new google.maps.LatLng(47.14299093405307, 8.570155595419937),new google.maps.LatLng(47.14196928215613, 8.571099732993218),new google.maps.LatLng(47.14150223474987, 8.572129701254898),new google.maps.LatLng(47.140593455031215, 8.572949266126106),new google.maps.LatLng(47.13942966238448, 8.573975061057144),new google.maps.LatLng(47.13820359562852, 8.57556292879396),new google.maps.LatLng(47.137824093045715, 8.578438256857925),new google.maps.LatLng(47.13753671652828, 8.581849137549415),new google.maps.LatLng(47.13726943055236, 8.584274743674332),new google.maps.LatLng(47.13785328564826, 8.587107156394097),new google.maps.LatLng(47.138378749753166, 8.5900253998023),new google.maps.LatLng(47.1382327880227, 8.591312860129449),new google.maps.LatLng(47.13791167080522, 8.592471574423882),new google.maps.LatLng(47.137415394927366, 8.594188188193375),new google.maps.LatLng(47.13718185173503, 8.595947717307183),new google.maps.LatLng(47.13683153502327, 8.597106431601578),new google.maps.LatLng(47.1366563758019, 8.59805056917482),new google.maps.LatLng(47.137415394927366, 8.60028216707521),new google.maps.LatLng(47.137415394927366, 8.602921460745865),new google.maps.LatLng(47.13735700922547, 8.604938481925103),new google.maps.LatLng(47.13592526929903, 8.607916901540245)]),'clickable' : false,'strokeColor' : '#69AB3B','strokeOpacity' : 1,'strokeWeight' : 4}}" } array(2) { [0]=> string(7023) "{'uid' : 'Polyline_4','drawFunctionName' : 'drawPolyline','options' : {'path' : new google.maps.MVCArray([new google.maps.LatLng(47.17371151287572,8.515342174048083),new google.maps.LatLng(47.171564060822455, 8.514111737563503),new google.maps.LatLng(47.17097655729835, 8.51389357912315),new google.maps.LatLng(47.17068481245465, 8.513636087057721),new google.maps.LatLng(47.169196888822945, 8.514365647909772),new google.maps.LatLng(47.16835079601056, 8.514751886007916),new google.maps.LatLng(47.16777056061114, 8.515750285353114),new google.maps.LatLng(47.165616943303675, 8.515179346220103),new google.maps.LatLng(47.16604585412043, 8.516082261679303),new google.maps.LatLng(47.16607503122508, 8.517455552694928),new google.maps.LatLng(47.16645433212725, 8.518828843710553),new google.maps.LatLng(47.168428171369236, 8.522358884222214),new google.maps.LatLng(47.16972204309963, 8.524193261740338),new google.maps.LatLng(47.17039306600834, 8.525309060690534),new google.maps.LatLng(47.170859859553225, 8.525695298788678),new google.maps.LatLng(47.171530868086435, 8.525995706198346),new google.maps.LatLng(47.171705912396526, 8.526339028952291),new google.maps.LatLng(47.17144334571507, 8.528184388754498),new google.maps.LatLng(47.17141382658803, 8.530070401190603),new google.maps.LatLng(47.1718809561298, 8.53213260042442),new google.maps.LatLng(47.17357301580593, 8.535909150717389),new google.maps.LatLng(47.17485661132257, 8.539084886191022),new google.maps.LatLng(47.17520667744229, 8.54011485445274),new google.maps.LatLng(47.1754108816132, 8.542046044943502),new google.maps.LatLng(47.1753233656359, 8.54286143648399),new google.maps.LatLng(47.175731772295016, 8.543891404745748),new google.maps.LatLng(47.17625686195538, 8.545007203695944),new google.maps.LatLng(47.17686945999668, 8.545736764547955),new google.maps.LatLng(47.17759873416439, 8.546466325400006),new google.maps.LatLng(47.17825502774974, 8.54841655199706),new google.maps.LatLng(47.17824048714656, 8.54882666933315),new google.maps.LatLng(47.17789044102713, 8.548483346579205),new google.maps.LatLng(47.17733619661814, 8.547753785727155),new google.maps.LatLng(47.17646106208796, 8.54736754762901),new google.maps.LatLng(47.17529419361149, 8.547839616415631),new google.maps.LatLng(47.17447737042199, 8.548311685202252),new google.maps.LatLng(47.17459406021825, 8.54861209261196),new google.maps.LatLng(47.17526502157123, 8.54882666933315),new google.maps.LatLng(47.175636618808426, 8.549417658628853),new google.maps.LatLng(47.175731772295016, 8.549985383627545),new google.maps.LatLng(47.17564425684681, 8.550285791037213),new google.maps.LatLng(47.17520667744229, 8.550414537069967),new google.maps.LatLng(47.17479826674478, 8.550242875692975),new google.maps.LatLng(47.17447737042194, 8.550199960348737),new google.maps.LatLng(47.173864744784055, 8.55084369051235),new google.maps.LatLng(47.173368804567694, 8.551659082052838),new google.maps.LatLng(47.17319376573859, 8.552388642904928),new google.maps.LatLng(47.17290203307445, 8.552560304281842),new google.maps.LatLng(47.17240608386755, 8.552731965658795),new google.maps.LatLng(47.17188095612974, 8.552817796347272),new google.maps.LatLng(47.17147251985503, 8.5536331878878),new google.maps.LatLng(47.170801510584546, 8.554319833395612),new google.maps.LatLng(47.17024719218415, 8.55436274873985),new google.maps.LatLng(47.16956989544621, 8.553512898068293),new google.maps.LatLng(47.168350796010735, 8.553289865133932),new google.maps.LatLng(47.16782562817585, 8.552989457724225),new google.maps.LatLng(47.166510688710325, 8.553581079482647),new google.maps.LatLng(47.16537477629044, 8.554148172018659),new google.maps.LatLng(47.16458697845496, 8.55436274873985),new google.maps.LatLng(47.16433296743275, 8.555514188588637),new google.maps.LatLng(47.16412012978009, 8.556980584738385),new google.maps.LatLng(47.16394506046934, 8.557280992148053),new google.maps.LatLng(47.1630697052612, 8.556937669394186),new google.maps.LatLng(47.162194335629295, 8.557023500082623),new google.maps.LatLng(47.161085513389594, 8.557710145590436),new google.maps.LatLng(47.160385192684146, 8.557624314902279),new google.maps.LatLng(47.15956814019258, 8.558225129721535),new google.maps.LatLng(47.15857598813229, 8.558010553000424),new google.maps.LatLng(47.157496272192446, 8.559298013327531),new google.maps.LatLng(47.15685426852965, 8.560199235556535),new google.maps.LatLng(47.1561830745884, 8.560499642966244),new google.maps.LatLng(47.155395140448235, 8.56032798158929),new google.maps.LatLng(47.15484066127182, 8.5601134048681),new google.maps.LatLng(47.154461277449144, 8.560199235556535),new google.maps.LatLng(47.15411338001361, 8.561103395719236),new google.maps.LatLng(47.15352739803878, 8.562259172080013),new google.maps.LatLng(47.15273942452103, 8.562988732932064),new google.maps.LatLng(47.151893069580865, 8.563289140341771),new google.maps.LatLng(47.149966832231584, 8.563932870505306),new google.maps.LatLng(47.149412296416614, 8.564147447226498),new google.maps.LatLng(47.1486534485573, 8.564018701193742),new google.maps.LatLng(47.14824483368388, 8.5640616165379),new google.maps.LatLng(47.147923776936864, 8.564662431357357),new google.maps.LatLng(47.14786374837891, 8.565455537854033),new google.maps.LatLng(47.14751515645473, 8.566507791159683),new google.maps.LatLng(47.14666871831906, 8.56732318270025),new google.maps.LatLng(47.14611414809423, 8.567752336142632),new google.maps.LatLng(47.145763890234385, 8.567923997519546),new google.maps.LatLng(47.14535525314765, 8.567666505454117),new google.maps.LatLng(47.14494661291959, 8.567366098044488),new google.maps.LatLng(47.14398337709597, 8.56835315096193),new google.maps.LatLng(47.14299093405307, 8.570155595419937),new google.maps.LatLng(47.14196928215613, 8.571099732993218),new google.maps.LatLng(47.14150223474987, 8.572129701254898),new google.maps.LatLng(47.140593455031215, 8.572949266126106),new google.maps.LatLng(47.13942966238448, 8.573975061057144),new google.maps.LatLng(47.13820359562852, 8.57556292879396),new google.maps.LatLng(47.137824093045715, 8.578438256857925),new google.maps.LatLng(47.13753671652828, 8.581849137549415),new google.maps.LatLng(47.13726943055236, 8.584274743674332),new google.maps.LatLng(47.13785328564826, 8.587107156394097),new google.maps.LatLng(47.138378749753166, 8.5900253998023),new google.maps.LatLng(47.1382327880227, 8.591312860129449),new google.maps.LatLng(47.13791167080522, 8.592471574423882),new google.maps.LatLng(47.137415394927366, 8.594188188193375),new google.maps.LatLng(47.13718185173503, 8.595947717307183),new google.maps.LatLng(47.13683153502327, 8.597106431601578),new google.maps.LatLng(47.1366563758019, 8.59805056917482),new google.maps.LatLng(47.137415394927366, 8.60028216707521),new google.maps.LatLng(47.137415394927366, 8.602921460745865),new google.maps.LatLng(47.13735700922547, 8.604938481925103),new google.maps.LatLng(47.13592526929903, 8.607916901540245)]),'clickable' : false,'strokeColor' : '#69AB3B','strokeOpacity' : 1,'strokeWeight' : 4}}" [1]=> string(4715) "{'uid' : 'Polyline_7','drawFunctionName' : 'drawPolyline','options' : {'path' : new google.maps.MVCArray([new google.maps.LatLng(47.173799031509,8.5152992587039),new google.maps.LatLng(47.171651582995, 8.5140688222194),new google.maps.LatLng(47.17115160343988, 8.513850663779351),new google.maps.LatLng(47.17068481245905, 8.513550256369683),new google.maps.LatLng(47.169109362609625, 8.51440856325441),new google.maps.LatLng(47.16820491658178, 8.514923547385308),new google.maps.LatLng(47.167858089035, 8.5157073700089),new google.maps.LatLng(47.165704475276, 8.5151364308759),new google.maps.LatLng(47.16654186272419, 8.518743013022515),new google.maps.LatLng(47.168515698709, 8.522315968878),new google.maps.LatLng(47.17030554176625, 8.524922822592789),new google.maps.LatLng(47.171735086396545, 8.526210282919976),new google.maps.LatLng(47.171501349008, 8.5300274858464),new google.maps.LatLng(47.17185178221865, 8.531982396719986),new google.maps.LatLng(47.1726978192604, 8.533656095145318),new google.maps.LatLng(47.17421481744682, 8.537239526389175),new google.maps.LatLng(47.17546922552205, 8.540071939108941),new google.maps.LatLng(47.17541088161748, 8.542389367697808),new google.maps.LatLng(47.17564425685118, 8.543762658713394),new google.maps.LatLng(47.176486837466, 8.5449050346409),new google.maps.LatLng(47.17783209978702, 8.546809648154351),new google.maps.LatLng(47.178473849948794, 8.548655007956597),new google.maps.LatLng(47.179319781492865, 8.5505647407752),new google.maps.LatLng(47.179640648552926, 8.551723455069634),new google.maps.LatLng(47.179468414567, 8.5528827792648),new google.maps.LatLng(47.17844467965514, 8.554856275199029),new google.maps.LatLng(47.17800712332763, 8.557388280509048),new google.maps.LatLng(47.17762790492714, 8.55983445513067),new google.maps.LatLng(47.176811117634955, 8.561679814932877),new google.maps.LatLng(47.17590680276311, 8.562538121817681),new google.maps.LatLng(47.17511916113301, 8.562709783194634),new google.maps.LatLng(47.17403978140609, 8.562709783194634),new google.maps.LatLng(47.17322293892118, 8.562752698538873),new google.maps.LatLng(47.17275616614579, 8.56283852922731),new google.maps.LatLng(47.17275616614579, 8.563181851981255),new google.maps.LatLng(47.173068784166, 8.5634350110207),new google.maps.LatLng(47.173835571962776, 8.564168904898697),new google.maps.LatLng(47.17517750535811, 8.56429765093145),new google.maps.LatLng(47.1765777475295, 8.56455514299688),new google.maps.LatLng(47.177336196622235, 8.564683889029595),new google.maps.LatLng(47.178376451532, 8.5634146476641),new google.maps.LatLng(47.179436460648155, 8.563868497489068),new google.maps.LatLng(47.180224038239615, 8.563954328177505),new google.maps.LatLng(47.18118661720829, 8.563696836112076),new google.maps.LatLng(47.18197416883836, 8.564469312308404),new google.maps.LatLng(47.182265851662535, 8.565542195914322),new google.maps.LatLng(47.182236683452246, 8.566443418143326),new google.maps.LatLng(47.181653315880794, 8.567172978995416),new google.maps.LatLng(47.18095326633359, 8.567559217093521),new google.maps.LatLng(47.18074908347689, 8.568160031912896),new google.maps.LatLng(47.181274123521895, 8.568760846732232),new google.maps.LatLng(47.18203250553139, 8.569018338797662),new google.maps.LatLng(47.18238252434352, 8.569619153616998),new google.maps.LatLng(47.182446384958, 8.5703612317414),new google.maps.LatLng(47.18238252434352, 8.570992444632623),new google.maps.LatLng(47.18194500046779, 8.571979497550103),new google.maps.LatLng(47.181478304359395, 8.572880719779107),new google.maps.LatLng(47.181150874153, 8.5740281443172),new google.maps.LatLng(47.18089492845466, 8.576013539908502),new google.maps.LatLng(47.18098243524904, 8.577258084891412),new google.maps.LatLng(47.180929282619, 8.5782455009572),new google.maps.LatLng(47.180924097402155, 8.580219243643853),new google.maps.LatLng(47.180165699559396, 8.582236264823052),new google.maps.LatLng(47.17975732700308, 8.584253286002252),new google.maps.LatLng(47.17888223237689, 8.58605573046026),new google.maps.LatLng(47.178532190487964, 8.586914037344986),new google.maps.LatLng(47.17844467965514, 8.587986920950943),new google.maps.LatLng(47.178473849948794, 8.589403127310845),new google.maps.LatLng(47.178561360733525, 8.590003942130142),new google.maps.LatLng(47.178377521534, 8.5905928810976),new google.maps.LatLng(47.175543143203, 8.5951492920721),new google.maps.LatLng(47.174681577401486, 8.595969174979302),new google.maps.LatLng(47.17380639912104, 8.596999143240982),new google.maps.LatLng(47.173427150720286, 8.598458264945123),new google.maps.LatLng(47.173335487451, 8.5999826643884)]),'clickable' : false,'strokeColor' : '#00A1E4','strokeOpacity' : 1,'strokeWeight' : 4}}" } array(3) { [0]=> string(7023) "{'uid' : 'Polyline_4','drawFunctionName' : 'drawPolyline','options' : {'path' : new google.maps.MVCArray([new google.maps.LatLng(47.17371151287572,8.515342174048083),new google.maps.LatLng(47.171564060822455, 8.514111737563503),new google.maps.LatLng(47.17097655729835, 8.51389357912315),new google.maps.LatLng(47.17068481245465, 8.513636087057721),new google.maps.LatLng(47.169196888822945, 8.514365647909772),new google.maps.LatLng(47.16835079601056, 8.514751886007916),new google.maps.LatLng(47.16777056061114, 8.515750285353114),new google.maps.LatLng(47.165616943303675, 8.515179346220103),new google.maps.LatLng(47.16604585412043, 8.516082261679303),new google.maps.LatLng(47.16607503122508, 8.517455552694928),new google.maps.LatLng(47.16645433212725, 8.518828843710553),new google.maps.LatLng(47.168428171369236, 8.522358884222214),new google.maps.LatLng(47.16972204309963, 8.524193261740338),new google.maps.LatLng(47.17039306600834, 8.525309060690534),new google.maps.LatLng(47.170859859553225, 8.525695298788678),new google.maps.LatLng(47.171530868086435, 8.525995706198346),new google.maps.LatLng(47.171705912396526, 8.526339028952291),new google.maps.LatLng(47.17144334571507, 8.528184388754498),new google.maps.LatLng(47.17141382658803, 8.530070401190603),new google.maps.LatLng(47.1718809561298, 8.53213260042442),new google.maps.LatLng(47.17357301580593, 8.535909150717389),new google.maps.LatLng(47.17485661132257, 8.539084886191022),new google.maps.LatLng(47.17520667744229, 8.54011485445274),new google.maps.LatLng(47.1754108816132, 8.542046044943502),new google.maps.LatLng(47.1753233656359, 8.54286143648399),new google.maps.LatLng(47.175731772295016, 8.543891404745748),new google.maps.LatLng(47.17625686195538, 8.545007203695944),new google.maps.LatLng(47.17686945999668, 8.545736764547955),new google.maps.LatLng(47.17759873416439, 8.546466325400006),new google.maps.LatLng(47.17825502774974, 8.54841655199706),new google.maps.LatLng(47.17824048714656, 8.54882666933315),new google.maps.LatLng(47.17789044102713, 8.548483346579205),new google.maps.LatLng(47.17733619661814, 8.547753785727155),new google.maps.LatLng(47.17646106208796, 8.54736754762901),new google.maps.LatLng(47.17529419361149, 8.547839616415631),new google.maps.LatLng(47.17447737042199, 8.548311685202252),new google.maps.LatLng(47.17459406021825, 8.54861209261196),new google.maps.LatLng(47.17526502157123, 8.54882666933315),new google.maps.LatLng(47.175636618808426, 8.549417658628853),new google.maps.LatLng(47.175731772295016, 8.549985383627545),new google.maps.LatLng(47.17564425684681, 8.550285791037213),new google.maps.LatLng(47.17520667744229, 8.550414537069967),new google.maps.LatLng(47.17479826674478, 8.550242875692975),new google.maps.LatLng(47.17447737042194, 8.550199960348737),new google.maps.LatLng(47.173864744784055, 8.55084369051235),new google.maps.LatLng(47.173368804567694, 8.551659082052838),new google.maps.LatLng(47.17319376573859, 8.552388642904928),new google.maps.LatLng(47.17290203307445, 8.552560304281842),new google.maps.LatLng(47.17240608386755, 8.552731965658795),new google.maps.LatLng(47.17188095612974, 8.552817796347272),new google.maps.LatLng(47.17147251985503, 8.5536331878878),new google.maps.LatLng(47.170801510584546, 8.554319833395612),new google.maps.LatLng(47.17024719218415, 8.55436274873985),new google.maps.LatLng(47.16956989544621, 8.553512898068293),new google.maps.LatLng(47.168350796010735, 8.553289865133932),new google.maps.LatLng(47.16782562817585, 8.552989457724225),new google.maps.LatLng(47.166510688710325, 8.553581079482647),new google.maps.LatLng(47.16537477629044, 8.554148172018659),new google.maps.LatLng(47.16458697845496, 8.55436274873985),new google.maps.LatLng(47.16433296743275, 8.555514188588637),new google.maps.LatLng(47.16412012978009, 8.556980584738385),new google.maps.LatLng(47.16394506046934, 8.557280992148053),new google.maps.LatLng(47.1630697052612, 8.556937669394186),new google.maps.LatLng(47.162194335629295, 8.557023500082623),new google.maps.LatLng(47.161085513389594, 8.557710145590436),new google.maps.LatLng(47.160385192684146, 8.557624314902279),new google.maps.LatLng(47.15956814019258, 8.558225129721535),new google.maps.LatLng(47.15857598813229, 8.558010553000424),new google.maps.LatLng(47.157496272192446, 8.559298013327531),new google.maps.LatLng(47.15685426852965, 8.560199235556535),new google.maps.LatLng(47.1561830745884, 8.560499642966244),new google.maps.LatLng(47.155395140448235, 8.56032798158929),new google.maps.LatLng(47.15484066127182, 8.5601134048681),new google.maps.LatLng(47.154461277449144, 8.560199235556535),new google.maps.LatLng(47.15411338001361, 8.561103395719236),new google.maps.LatLng(47.15352739803878, 8.562259172080013),new google.maps.LatLng(47.15273942452103, 8.562988732932064),new google.maps.LatLng(47.151893069580865, 8.563289140341771),new google.maps.LatLng(47.149966832231584, 8.563932870505306),new google.maps.LatLng(47.149412296416614, 8.564147447226498),new google.maps.LatLng(47.1486534485573, 8.564018701193742),new google.maps.LatLng(47.14824483368388, 8.5640616165379),new google.maps.LatLng(47.147923776936864, 8.564662431357357),new google.maps.LatLng(47.14786374837891, 8.565455537854033),new google.maps.LatLng(47.14751515645473, 8.566507791159683),new google.maps.LatLng(47.14666871831906, 8.56732318270025),new google.maps.LatLng(47.14611414809423, 8.567752336142632),new google.maps.LatLng(47.145763890234385, 8.567923997519546),new google.maps.LatLng(47.14535525314765, 8.567666505454117),new google.maps.LatLng(47.14494661291959, 8.567366098044488),new google.maps.LatLng(47.14398337709597, 8.56835315096193),new google.maps.LatLng(47.14299093405307, 8.570155595419937),new google.maps.LatLng(47.14196928215613, 8.571099732993218),new google.maps.LatLng(47.14150223474987, 8.572129701254898),new google.maps.LatLng(47.140593455031215, 8.572949266126106),new google.maps.LatLng(47.13942966238448, 8.573975061057144),new google.maps.LatLng(47.13820359562852, 8.57556292879396),new google.maps.LatLng(47.137824093045715, 8.578438256857925),new google.maps.LatLng(47.13753671652828, 8.581849137549415),new google.maps.LatLng(47.13726943055236, 8.584274743674332),new google.maps.LatLng(47.13785328564826, 8.587107156394097),new google.maps.LatLng(47.138378749753166, 8.5900253998023),new google.maps.LatLng(47.1382327880227, 8.591312860129449),new google.maps.LatLng(47.13791167080522, 8.592471574423882),new google.maps.LatLng(47.137415394927366, 8.594188188193375),new google.maps.LatLng(47.13718185173503, 8.595947717307183),new google.maps.LatLng(47.13683153502327, 8.597106431601578),new google.maps.LatLng(47.1366563758019, 8.59805056917482),new google.maps.LatLng(47.137415394927366, 8.60028216707521),new google.maps.LatLng(47.137415394927366, 8.602921460745865),new google.maps.LatLng(47.13735700922547, 8.604938481925103),new google.maps.LatLng(47.13592526929903, 8.607916901540245)]),'clickable' : false,'strokeColor' : '#69AB3B','strokeOpacity' : 1,'strokeWeight' : 4}}" [1]=> string(4715) "{'uid' : 'Polyline_7','drawFunctionName' : 'drawPolyline','options' : {'path' : new google.maps.MVCArray([new google.maps.LatLng(47.173799031509,8.5152992587039),new google.maps.LatLng(47.171651582995, 8.5140688222194),new google.maps.LatLng(47.17115160343988, 8.513850663779351),new google.maps.LatLng(47.17068481245905, 8.513550256369683),new google.maps.LatLng(47.169109362609625, 8.51440856325441),new google.maps.LatLng(47.16820491658178, 8.514923547385308),new google.maps.LatLng(47.167858089035, 8.5157073700089),new google.maps.LatLng(47.165704475276, 8.5151364308759),new google.maps.LatLng(47.16654186272419, 8.518743013022515),new google.maps.LatLng(47.168515698709, 8.522315968878),new google.maps.LatLng(47.17030554176625, 8.524922822592789),new google.maps.LatLng(47.171735086396545, 8.526210282919976),new google.maps.LatLng(47.171501349008, 8.5300274858464),new google.maps.LatLng(47.17185178221865, 8.531982396719986),new google.maps.LatLng(47.1726978192604, 8.533656095145318),new google.maps.LatLng(47.17421481744682, 8.537239526389175),new google.maps.LatLng(47.17546922552205, 8.540071939108941),new google.maps.LatLng(47.17541088161748, 8.542389367697808),new google.maps.LatLng(47.17564425685118, 8.543762658713394),new google.maps.LatLng(47.176486837466, 8.5449050346409),new google.maps.LatLng(47.17783209978702, 8.546809648154351),new google.maps.LatLng(47.178473849948794, 8.548655007956597),new google.maps.LatLng(47.179319781492865, 8.5505647407752),new google.maps.LatLng(47.179640648552926, 8.551723455069634),new google.maps.LatLng(47.179468414567, 8.5528827792648),new google.maps.LatLng(47.17844467965514, 8.554856275199029),new google.maps.LatLng(47.17800712332763, 8.557388280509048),new google.maps.LatLng(47.17762790492714, 8.55983445513067),new google.maps.LatLng(47.176811117634955, 8.561679814932877),new google.maps.LatLng(47.17590680276311, 8.562538121817681),new google.maps.LatLng(47.17511916113301, 8.562709783194634),new google.maps.LatLng(47.17403978140609, 8.562709783194634),new google.maps.LatLng(47.17322293892118, 8.562752698538873),new google.maps.LatLng(47.17275616614579, 8.56283852922731),new google.maps.LatLng(47.17275616614579, 8.563181851981255),new google.maps.LatLng(47.173068784166, 8.5634350110207),new google.maps.LatLng(47.173835571962776, 8.564168904898697),new google.maps.LatLng(47.17517750535811, 8.56429765093145),new google.maps.LatLng(47.1765777475295, 8.56455514299688),new google.maps.LatLng(47.177336196622235, 8.564683889029595),new google.maps.LatLng(47.178376451532, 8.5634146476641),new google.maps.LatLng(47.179436460648155, 8.563868497489068),new google.maps.LatLng(47.180224038239615, 8.563954328177505),new google.maps.LatLng(47.18118661720829, 8.563696836112076),new google.maps.LatLng(47.18197416883836, 8.564469312308404),new google.maps.LatLng(47.182265851662535, 8.565542195914322),new google.maps.LatLng(47.182236683452246, 8.566443418143326),new google.maps.LatLng(47.181653315880794, 8.567172978995416),new google.maps.LatLng(47.18095326633359, 8.567559217093521),new google.maps.LatLng(47.18074908347689, 8.568160031912896),new google.maps.LatLng(47.181274123521895, 8.568760846732232),new google.maps.LatLng(47.18203250553139, 8.569018338797662),new google.maps.LatLng(47.18238252434352, 8.569619153616998),new google.maps.LatLng(47.182446384958, 8.5703612317414),new google.maps.LatLng(47.18238252434352, 8.570992444632623),new google.maps.LatLng(47.18194500046779, 8.571979497550103),new google.maps.LatLng(47.181478304359395, 8.572880719779107),new google.maps.LatLng(47.181150874153, 8.5740281443172),new google.maps.LatLng(47.18089492845466, 8.576013539908502),new google.maps.LatLng(47.18098243524904, 8.577258084891412),new google.maps.LatLng(47.180929282619, 8.5782455009572),new google.maps.LatLng(47.180924097402155, 8.580219243643853),new google.maps.LatLng(47.180165699559396, 8.582236264823052),new google.maps.LatLng(47.17975732700308, 8.584253286002252),new google.maps.LatLng(47.17888223237689, 8.58605573046026),new google.maps.LatLng(47.178532190487964, 8.586914037344986),new google.maps.LatLng(47.17844467965514, 8.587986920950943),new google.maps.LatLng(47.178473849948794, 8.589403127310845),new google.maps.LatLng(47.178561360733525, 8.590003942130142),new google.maps.LatLng(47.178377521534, 8.5905928810976),new google.maps.LatLng(47.175543143203, 8.5951492920721),new google.maps.LatLng(47.174681577401486, 8.595969174979302),new google.maps.LatLng(47.17380639912104, 8.596999143240982),new google.maps.LatLng(47.173427150720286, 8.598458264945123),new google.maps.LatLng(47.173335487451, 8.5999826643884)]),'clickable' : false,'strokeColor' : '#00A1E4','strokeOpacity' : 1,'strokeWeight' : 4}}" [2]=> string(6970) "{'uid' : 'Polyline_3','drawFunctionName' : 'drawPolyline','options' : {'path' : new google.maps.MVCArray([new google.maps.LatLng(47.173799031509,8.5152992587039),new google.maps.LatLng(47.171651582995, 8.5140688222194),new google.maps.LatLng(47.171270665912175, 8.513980588027911),new google.maps.LatLng(47.17093516106151, 8.5137445536346),new google.maps.LatLng(47.17073093967997, 8.51350851924129),new google.maps.LatLng(47.16927219268891, 8.514323910781817),new google.maps.LatLng(47.16836774943379, 8.51477452189632),new google.maps.LatLng(47.16794469810848, 8.515053471633909),new google.maps.LatLng(47.167858089035, 8.5157073700089),new google.maps.LatLng(47.1667776425013, 8.515611371108966),new google.maps.LatLng(47.16617951656439, 8.515589913436887),new google.maps.LatLng(47.165654327261834, 8.515203675338702),new google.maps.LatLng(47.164647699918255, 8.514538487503009),new google.maps.LatLng(47.163554555987, 8.5141699270911),new google.maps.LatLng(47.16228423901425, 8.513465603897131),new google.maps.LatLng(47.16088361997216, 8.513079365798987),new google.maps.LatLng(47.158476219721415, 8.512113770553626),new google.maps.LatLng(47.156209031269, 8.5108573034397),new google.maps.LatLng(47.15533914057236, 8.51101942927547),new google.maps.LatLng(47.15458037733611, 8.511126717636065),new google.maps.LatLng(47.1540112977991, 8.510826310226397),new google.maps.LatLng(47.15345680418332, 8.510139664718585),new google.maps.LatLng(47.15291689694555, 8.509367188522296),new google.maps.LatLng(47.15215809912367, 8.508787831375079),new google.maps.LatLng(47.15147225330926, 8.50876637370296),new google.maps.LatLng(47.15071343486095, 8.508659085342364),new google.maps.LatLng(47.149489303267, 8.5079536646973),new google.maps.LatLng(47.14915198589378, 8.507328709670977),new google.maps.LatLng(47.14778020782817, 8.50649186045833),new google.maps.LatLng(47.146359763781, 8.5059133769868),new google.maps.LatLng(47.14251166725622, 8.505676468917844),new google.maps.LatLng(47.141183503988444, 8.505311688491819),new google.maps.LatLng(47.140293178167454, 8.504946908065833),new google.maps.LatLng(47.13944662503471, 8.504710873672483),new google.maps.LatLng(47.13889197946691, 8.504732331344602),new google.maps.LatLng(47.138541075537, 8.5050983806593),new google.maps.LatLng(47.13749074383942, 8.505998333999631),new google.maps.LatLng(47.13676091899179, 8.50627728373718),new google.maps.LatLng(47.1363522127016, 8.506234368392942),new google.maps.LatLng(47.13568075983384, 8.505655011245725),new google.maps.LatLng(47.1345421899417, 8.504882535049436),new google.maps.LatLng(47.133199230017176, 8.503895482131956),new google.maps.LatLng(47.1319584216843, 8.502715310165442),new google.maps.LatLng(47.13100954871954, 8.501964291641272),new google.maps.LatLng(47.130819772095094, 8.50153513819885),new google.maps.LatLng(47.130469413470905, 8.500751933166502),new google.maps.LatLng(47.12988547730166, 8.499689778396643),new google.maps.LatLng(47.129148248731724, 8.499228438446043),new google.maps.LatLng(47.12787084830479, 8.498423775741614),new google.maps.LatLng(47.127045996300296, 8.49830575854492),new google.maps.LatLng(47.12600213870214, 8.498123368331946),new google.maps.LatLng(47.125315955416305, 8.49752255351261),new google.maps.LatLng(47.12490716116625, 8.49677153498836),new google.maps.LatLng(47.12462246331504, 8.496417483398394),new google.maps.LatLng(47.124016562816195, 8.49578448207088),new google.maps.LatLng(47.12293614480287, 8.495612820693927),new google.maps.LatLng(47.12217691901794, 8.495934685775714),new google.maps.LatLng(47.120746040971746, 8.496342381545977),new google.maps.LatLng(47.11994298031079, 8.496599873611407),new google.maps.LatLng(47.11935892858037, 8.496578415939288),new google.maps.LatLng(47.11895008855437, 8.496835908004718),new google.maps.LatLng(47.11830761930928, 8.49728651911922),new google.maps.LatLng(47.11769434597495, 8.498337945053057),new google.maps.LatLng(47.11718327946346, 8.499196251937823),new google.maps.LatLng(47.11683283101862, 8.499646863052325),new google.maps.LatLng(47.11557703847119, 8.499818524429358),new google.maps.LatLng(47.11372249993015, 8.500934323379553),new google.maps.LatLng(47.11199932745771, 8.501599511215247),new google.maps.LatLng(47.11106470210132, 8.50252219111637),new google.maps.LatLng(47.11005704075234, 8.502586564132688),new google.maps.LatLng(47.10903475612099, 8.50305863291931),new google.maps.LatLng(47.108319145196226, 8.503552159378089),new google.maps.LatLng(47.108053636615, 8.5042280350461),new google.maps.LatLng(47.10782259318618, 8.50501128108219),new google.maps.LatLng(47.10748668772918, 8.505655011245725),new google.maps.LatLng(47.106785660816726, 8.506234368393022),new google.maps.LatLng(47.10647895863934, 8.506963929245073),new google.maps.LatLng(47.106216069652234, 8.508101185867426),new google.maps.LatLng(47.10583633882321, 8.508401593277055),new google.maps.LatLng(47.105164500720555, 8.508465966293413),new google.maps.LatLng(47.104653313875325, 8.508659085342485),new google.maps.LatLng(47.10382079907763, 8.509388646194536),new google.maps.LatLng(47.102963064927, 8.5099236083638),new google.maps.LatLng(47.102666941252515, 8.510461529800493),new google.maps.LatLng(47.10183439539101, 8.510869225570756),new google.maps.LatLng(47.10135238920473, 8.511169632980424),new google.maps.LatLng(47.100884985098986, 8.512178143570024),new google.maps.LatLng(47.1001554264435, 8.512596363084763),new google.maps.LatLng(47.099425857791, 8.5130145825995),new google.maps.LatLng(47.09932207282075, 8.513379773208895),new google.maps.LatLng(47.09882543688395, 8.513937672683992),new google.maps.LatLng(47.098431046222444, 8.514559945175447),new google.maps.LatLng(47.09632758002361, 8.515954693863192),new google.maps.LatLng(47.09549493503093, 8.517327984878817),new google.maps.LatLng(47.09474992584359, 8.51900168330411),new google.maps.LatLng(47.094238638997744, 8.519173344681063),new google.maps.LatLng(47.09378578083483, 8.519430836746492),new google.maps.LatLng(47.093289093260324, 8.52001019389371),new google.maps.LatLng(47.092604897297, 8.5209127872581),new google.maps.LatLng(47.09321605057926, 8.520353516647615),new google.maps.LatLng(47.09390264782617, 8.519538125107088),new google.maps.LatLng(47.09441393789788, 8.519323548385897),new google.maps.LatLng(47.09488139881047, 8.519044598648309),new google.maps.LatLng(47.09505669559478, 8.518551072189608),new google.maps.LatLng(47.09530503171808, 8.51803608805871),new google.maps.LatLng(47.09567022979558, 8.51726361186246),new google.maps.LatLng(47.09638601076229, 8.516083439895906),new google.maps.LatLng(47.097379323509855, 8.515439709732332),new google.maps.LatLng(47.09837261772783, 8.514795979568758),new google.maps.LatLng(47.09961420944319, 8.513100823471346),new google.maps.LatLng(47.0998333108581, 8.513143738815584),new google.maps.LatLng(47.100235326778, 8.5130308120039)]),'clickable' : false,'strokeColor' : '#00CC00','strokeOpacity' : 1,'strokeWeight' : 4}}



/*
 * jQuery Highlight Regex Plugin v0.1.1
 *
 * Based on highlight v3 by Johann Burkard
 * http://johannburkard.de/blog/programming/javascript/highlight-javascript-text-higlighting-jquery-plugin.html
 *
 * (c) 2009-10 Jacob Rothstein
 * MIT license
 */(function(a){var b=function(c){if(!!c&&!!c.childNodes){var d=a.makeArray(c.childNodes),e=null;a.each(d,function(a,d){d.nodeType===3?d.nodeValue===""?c.removeChild(d):e!==null?(e.nodeValue+=d.nodeValue,c.removeChild(d)):e=d:(e=null,d.childNodes&&b(d))})}};a.fn.highlightRegex=function(c,d){typeof d=="undefined"&&(d={}),d.className=d.className||"highlight",d.tagType=d.tagType||"span",typeof c=="undefined"||c.source===""?a(this).find(d.tagType+"."+d.className).each(function(){a(this).replaceWith(a(this).text()),b(a(this).parent().get(0))}):a(this).each(function(){var e=a(this).get(0);b(e),a.each(a.makeArray(e.childNodes),function(e,f){var g,h,i,j,k,l;b(f);if(f.nodeType==3)while(f.data&&(j=f.data.search(c))>=0){k=f.data.slice(j).match(c)[0];if(k.length>0)g=document.createElement(d.tagType),g.className=d.className,l=f.parentNode,h=f.splitText(j),f=h.splitText(k.length),i=h.cloneNode(!0),g.appendChild(i),l.replaceChild(g,h);else break}else a(f).highlightRegex(c,d)})});return a(this)}})(jQuery)
