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.437213,18.272495), icon: 'img/gicons/chalupa.png', title: 'BEČVA VILLA RESORT', clickable: true, animation: google.maps.Animation.DROP, content: '
BEČVA VILLA RESORTZobrazit detail ubytování

BEČVA VILLA RESORT

Luxusní ubytování v krásné přírodě Beskyd. Ideální nejen pro relaxaci a odpočinek. Ubytování ve vilách nebo bungalovech. V okolí se nachází mnoho zajímavých míst.

' }; 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); });}