function renderPoints() { markerShowObj = new Object();markerShowObj[200] = true; markerObj[200] = new MarkerManager(map); google.maps.event.addListener(markerObj[200], 'loaded', function(){ var dataSet = {position: new google.maps.LatLng(49.4194, 18.0962), icon: 'img/gicons/penzion.png', title: 'Penzion Horalka', clickable: true, animation: google.maps.Animation.DROP, content: '
Penzion Horalka se nalézá ve Valašské Bystřici uprostřed Valašska. Nabízí komfortní ubytování určené k relaxaci, odpočinku, ale i k firemním jednáním a školícím kurzům. V blízkosti Ski areál Búřov a přehrada Bystřička.
' }; var newMarker = new google.maps.Marker(dataSet); google.maps.event.addListener(newMarker, 'click', onMarkerClick); markerObj[200].addMarker(newMarker, 3); markerObj[200].refresh(); infoWindow.open(map, newMarker); });}