var map; var geocoder; var marker; var gmarkers = []; var arrplaces = []; var arrnear = []; var directionsService; var directionsDisplay; var swapped =0; var addressok; $(document).ready(function () { if ($('#map_canvas').length != 0) { loadAPI(); } }); function loadAPI() { //Load Google Api key on Load Call Initialise function var script = document.createElement("script"); script.src = "https://maps.googleapis.com/maps/api/js?key=AIzaSyA9EWEjeg2F7wq8IqEBeESjG4yt33t6940&sensor=true®ion=GR&callback=initialise&language=gr&v=3.13"; script.type = "text/javascript"; document.getElementsByTagName("head")[0].appendChild(script); } function initialise() { directionsService = new google.maps.DirectionsService(); directionsDisplay = new google.maps.DirectionsRenderer(); var mapOptions = { zoom: 13, center: new google.maps.LatLng(37.975555, 23.734707), mapTypeId: google.maps.MapTypeId.ROADMAP, scrollwheel: false } map = new google.maps.Map(document.getElementById("map_canvas"), mapOptions); geocoder = new google.maps.Geocoder(); directionsDisplay.setMap(map); directionsDisplay.setPanel(document.getElementById("directionsPanel")); if (arrplaces.length != 0) { addpois(arrplaces); } if (arrnear.length != 0) { addpois(arrnear); } } //id, section, name, address ,x, y, iconfile, distance, zindex function addpois(locations) { var lgicons = 0; var smicons = 0; var id; var section; var name; var address; var x; var y; var iconfile; var distance; var zindex; var iconsize; var placefile; var infowindow = new google.maps.InfoWindow({ content: '' }); var bounds = new google.maps.LatLngBounds(); for (var i = 0; i < locations.length; i++) { var place = locations[i]; id = place[0]; section = place[1]; name = place[2]; address = place[3]; x = place[4]; y = place[5]; iconfile = place[6]; distance = place[7]; zindex = place[8]; iconsize = place[9]; placefile = place[10]; var poihtml = infowindowhtml(id, section, name, address, distance, iconfile, placefile); if (iconsize == 1) { var image = new google.maps.MarkerImage('/images/map/icons/' + iconfile + '.png'); lgicons += 1; } else { var image = new google.maps.MarkerImage('/images/map/icons/' + iconfile + '.png', new google.maps.Size(40, 40), null, new google.maps.Point(10, 10), new google.maps.Size(20, 20) ); smicons += 1; } var myLatLng = new google.maps.LatLng(x, y); // marker = new google.maps.Marker({ // id : id, // position: myLatLng, // map: map, // icon: image, // optimized: false, // info: infowindowhtml(id, section, name, address, distance, iconfile, placefile) // }); //google.maps.event.addListener(marker, "click", function () { // infowindow.setContent(this.info); // infowindow.open(map, this); //}); //gmarkers.push(marker); //gmarkers[id] = marker; var html = '' + name + '' + address +'' setMarkers(map, myLatLng,html,i,locations.length,iconsize) bounds.extend(myLatLng); } if(gmarkers.length==1){ openmarkerwindow(0); //gmarkers[0].showInfoWindow(); }; if (iconsize == 2 && locations.length ===1) { var place = locations[0]; map.setCenter(new google.maps.LatLng(place[4], place[5])); map.setZoom(13); } else { map.fitBounds(bounds); } } function codeAddress() { var address = document.getElementById("address").value; geocoder.geocode({ 'address': address }, function (results, status) { if (status == google.maps.GeocoderStatus.OK) { map.setCenter(results[0].geometry.location); var marker = new google.maps.Marker({ map: map, position: results[0].geometry.location }); } else { alert("Geocode was not successful for the following reason: " + status); } }); } function infowindowhtml(id, section, name, address, distance, iconfile, placefile) { var html; if (section == 'cinema') { placefile = 'hall.aspx?id=' } else if (section == 'theatre') { placefile = 'theater.aspx?id=' } else if (section == 'music' || section == 'arts' || section == 'daylife') { placefile = 'place.aspx?pid=' } else if (section == 'umami') { placefile = 'market/shop/?id=' } else { placefile = 'place.aspx?id=' } html = '
' + '' + '

' + '' + name + '' + '

' + '

' + address + '

' if (distance > 0) { html = html + '

Σε ' + distance + ' m

' } html = html +'
' return html; } function calcRoute() { var selectedMode = document.getElementById("mode").value; var start = document.getElementById("address").value; var startxy = document.getElementById("startxy").value; var end = document.getElementById("destination").value; var endxy = document.getElementById("destxy").value; if (endxy != '') { end = endxy; } else if (startxy != '') { end = startxy; } var request = { origin: start, destination: end, travelMode: google.maps.TravelMode[selectedMode] }; directionsService.route(request, function (response, status) { if (status == google.maps.DirectionsStatus.OK) { directionsDisplay.setDirections(response); } }); } function openmarkerwindow(id) { var showmarker = gmarkers[id]; google.maps.event.trigger(showmarker, "click"); //goToByScroll('map_canvas'); map.setZoom(14); } function showmarkers() { //id, section, name, address ,x, y, iconfile, distance, zindex,Iconsize var plces = [ [1, 'cinema', 'Bondi Beach', '', 37.990542, 23.774856, 'cinema', 0, 4, 1], [2, 'cinema', 'Coogee Beach', '', 37.923036, 23.759052, 'cinema', 0, 5, 2], [3, 'cinema', 'Cronulla Beach', '', 37.928249, 23.757507, 'cinema', 0, 3, 2], [5, 'cinema', 'Maroubra Beach', '', 37.950198, 23.759302, 'cinema', 0, 1, 2] ]; addpois(plces); } function swapaddresses() { var tmpadr; tmpadr = $('#address').val(); $('#address').val($('#destination').val()); $('#destination').val(tmpadr); tmpadr = $('#startxy').val(); $('#startxy').val($('#destxy').val()); $('#destxy').val(tmpadr); } function goToByScroll(id) { //used in map $('html,body').animate({ scrollTop: $("#" + id).offset().top - 50 }, 'slow'); } function setMarkers(map, point,html,SpriteNum,placecounter,category) { //console.log(placecounter) var infowindow = new google.maps.InfoWindow({ content: '

' + html + '

' }); if(placecounter>1 && category==0){ var mimage = { url: '/tributes/numbers.png', // This marker is 20 pixels wide by 32 pixels tall. size: new google.maps.Size(32, 32), // The origin for this image is 0,0. origin: new google.maps.Point(32*(SpriteNum), 0), // The anchor for this image is the base of the flagpole at 0,32. anchor: new google.maps.Point(10, 10) }; } else{ var mimage = { url: '/tributes/numbers.png', // This marker is 20 pixels wide by 32 pixels tall. size: new google.maps.Size(32, 32), // The origin for this image is 0,0. origin: new google.maps.Point(0,32), // The anchor for this image is the base of the flagpole at 0,32. anchor: new google.maps.Point(10, 10) }; } var marker = new google.maps.Marker({ position: point, map: map, icon: mimage, title: '', zIndex:10*SpriteNum+1 }); google.maps.event.addListener(marker, 'click', function() { infowindow.open(map,marker); }); gmarkers.push(marker); // if(zoomlevel==15)//company map // { // infowindow.open(map,marker); // } } function locateAddress1() { document.getElementById("SimilarAddress1").style.display = 'block'; var address if (swapped==1){ address = document.getElementById("Address2"); }else{ address = document.getElementById("Address1"); } //alert(address.value); if (addressok != address.value){ geocoder.getLocations(address.value, add2candidates1); geocoder.getLocations(address.value +" οδός", add2candidates1); geocoder.getLocations(address.value + " λεωφόρος", add2candidates1); document.getElementById("SimilarAddress1").innerHTML = "
X<\/a>
"; setTimeout("displaysimilar1()", 500); }else{ gotodirections(addressok,endlat,endlon); } } function swapvalues() { var tmpaddress; var tmpcoords; var txtaddress1 = document.getElementById('Address1'); var txtaddress2 = document.getElementById('Address2'); tmpaddress = txtaddress1.value ; txtaddress1.value = txtaddress2.value; txtaddress2.value = tmpaddress; if (swapped==0){ swapped = 1; document.getElementById('Address1').disabled=true; document.getElementById('Address2').disabled=false; }else{ swapped = 0; document.getElementById('Address1').disabled=false; document.getElementById('Address2').disabled=true; }; } function add2candidates1(response) { place = response; document.getElementById("SimilarAddress1").innerHTML = "
X<\/a>
"; if (place.Status.code == "200") { for (var i = 0; i < place.Placemark.length; i++) { p1c.push("" + place.Placemark[i].address + ""); p1c.push(place.Placemark[i].address); p1c.push(place.Placemark[i].Point.coordinates[1]); p1c.push(place.Placemark[i].Point.coordinates[0]); // alert("mphke"); } } } function displaysimilar1() { var txtaddress1 = document.getElementById('Address1'); var divsimilar = document.getElementById('SimilarAddress1'); switch (p1c.length) { case 12: //txtaddress1.value = p1c[1]; divsimilar.style.visibility = "hidden"; endlat = p1c[2]; endlon = p1c[3]; gotodirections(p1c[1],p1c[2],p1c[3]); p1c = []; break; case 0: divsimilar.style.visibility = "visible"; divsimilar.innerHTML += "H Διεύθυνση δεν υπάρχει..."; p1c = []; break; default: for (x = 0; x < p1c.length; x=x+4) { divsimilar.innerHTML += p1c[x]; }; p1c = []; divsimilar.style.visibility = "visible"; } }
afieroma

Athens open air

Roof gardens, κήποι και αυλές

Olive Garden

Olive Garden

Downtown από... ψηλά

Με σήμα την ελιά και θέα που κόβει την ανάσα, το rooftop του «Titania Hotel» είναι μια «υψηλή» απόδραση στο κέντρο της Αθήνας, από τον καφέ του πρωινού μέχρι τις προσεγμένες γεύσεις για γεύμα ή δείπνο.

To «Olive Garden» του «Titania Hotel» θα ήταν η πρώτη στάση για να ξεκινήσω την ξενάγηση των νεοαφιχθέντων στην Αθήνα φίλων. Σε αυτόν τον «κρεμαστό ελαιώνα» του κέντρου θα τους μυούσα στα εμβληματικά χρώματα της ελιάς που κοσμεί το χώρο και το λογότυπο αυτού του all day rooftop restaurant, θα τους σύστηνα τη νοστιμιά της ελληνικής και της μεσογειακής κουζίνας, θα τους παρακολουθούσα περήφανος να εκστασιάζονται από τη θέα του ηλιο-βασιλέματος, της Ακρόπολης και του Λυκαβηττού, θα εμπιστευόμουν το επαγγελματικό σέρβις για να τους περιποιηθεί. Για τους Αθηναίους άλλωστε, όσους ανακαλύπτουν ξανά το ιστορικό και εμπορικό κέντρο και όσους δεν το εγκατέλειψαν ποτέ, αυτή η θεαματική ταράτσα με τις κομψές πινελιές στη διακόσμηση αλλά και μια αίσθηση νησιού την ώρα του δειλινού, είναι κοινό διαχρονικό μυστικό. Είναι το στέκι τους από νωρίς το πρωί για καφέ, ένα διάλειμμα από τη δουλειά ή τα ψώνια, η κατάληξη μετά τη θεατρική ή την κινηματογραφική έξοδο. Κι αν η εκπληκτική θέα θα αρκούσε για την απογείωση, οι value for money τιμές, οι φρέσκες ελληνικές πρώτες ύλες και το πρωτότυπο food styling δίνουν ώθηση γι' ακόμα παραπάνω!

TIP: Η «La Brasserie», στο κεντρικό lobby, είναι το απόλυτο meeting point της πόλης, σερβίροντας από το πρωί καφέ, πρωτότυπα σνακ και ολόφρεσκα γλυκά.

Olive Garden Πανεπιστημίου 52, Κέντρο , τηλ. 2103326000 , www.titania.gr

Αφετηρία:
Προορισμός: