var lat=50.0687291; var lng=19.9372152; var zoom=13; function load() { if (GBrowserIsCompatible()) { var baseIcon = new GIcon(); baseIcon.iconSize=new GSize(32,32); baseIcon.shadowSize=new GSize(56,32); baseIcon.iconAnchor=new GPoint(16,32); baseIcon.infoWindowAnchor=new GPoint(16,0); var objconf = new GIcon(baseIcon, 'http://maps.google.com/mapfiles/kml/pal2/icon13.png', null, 'http://maps.google.com/mapfiles/kml/pal2/icon13s.png'); function createMarker(point, html, map, icon) { var marker = new GMarker(point, icon); GEvent.addListener(marker, "mouseover", function() { marker.openInfoWindowHtml(html); }); return marker; } var map = new GMap2(document.getElementById("map")); map.setCenter(new GLatLng(lat, lng), zoom); map.addControl(new GLargeMapControl ()); map.addControl(new GMapTypeControl()); mgr = new GMarkerManager(map); html = '
Hostel GiraffeKrowoderska 31Kraków (Małopolskie)

Located close to the main square of Cracow, the Hostel Giraffe is a friendly place where young personnel will help guests to see the most interesting places in Cracow and surroundings. Ro

Price from:To the centre:Location:
0 EURCity Center

Hostel Giraffe

'; var point = new GLatLng(50.0687291,19.9372152); mgr.addMarker(createMarker(point, html , map, objconf), 4); mgr.refresh(); } }