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.4411, 18.1947), icon: 'img/gicons/ubytovna.png', title: 'Ubytování Na hřišti', clickable: true, animation: google.maps.Animation.DROP, content: '
Ubytování Na hřištiZobrazit detail ubytování

Ubytování Na hřišti

Ubytovna se nachází v areálu fotbalového hřiště TJ Vigantice. Nabízí ubytování s kapacitou 21 lůžek. Sociální zařízení je společné. Dále je zde možnost ubytovat se v samostatné obytné jednotce (11 lůžek).

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