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, κήποι και αυλές

Χαλανδριανόν

Χαλανδριανόν

Μεράκι για τη θάλασσα

Ένας καταπράσινος κήπος περικλείει την απλότητα και τη «λαϊκή» σοφία ενός ουζερί που φέρνει την ψαριά της μέρας σε όσους ξέρουν να την εκτιμήσουν.

Tη φριτέζα την έχουμε παροπλισμένη», μου λέει ο Γιάννης Παπαχριστόπουλος, ένας από τους ιδιοκτήτες αυτού του καινούργιου ουζερί στο Χαλάνδρι, που προειδοποιεί ότι αν παραγγείλεις τηγανητές πατάτες θα καθυστερήσουν λίγο, αφού κόβονται εκείνη την ώρα στο χέρι για να τηγανιστούν. Κανένα πρόβλημα: ο κήπος είναι τόσο χαλαρωτικός με τα εικοσαετή δέντρα που τον περιστοιχίζουν και τον απομονώνουν από το δρόμο, ώστε αυτές τις ζεστές νύχτες του καλοκαιριού δεν βιάζεσαι καθόλου να φύγεις! Αντίθετα, στο «Χαλανδριανόν» έχεις έρθει για να σε περιποιηθούν σπιτικά άνθρωποι έμπειροι στην εστίαση, με μεράκι για τη θάλασσα που το έκαναν επά-γγελμα. Να σου καθαρίσουν χόρτα για σαλάτα, να σου τηγανίσουν ελαφρά μαριδάκι, σαρδέλα, κουτσομούρα και μπαρμπουνάκια, να σου ψήσουν ολόφρεσκα ψάρια (αυτήν την εποχή θα βρεις σφυρίδα και φαγκρί) και να σου σερβίρουν πεντανόστιμα όστρακα που φέρνουν από τη Χαλκίδα – αν είσαι κρεατοφάγος θα βρεις δυο-τρεις επιλογές, αλλά προσωπικά θα άφηνα για άλλη φορά τα μαμαδίστικα κεφτεδάκια με δυόσμο για χάρη ενός πιάτου με πετροσωλήνες, καλόγνωμες και στρόμπια. Αν και από τα ηχεία βγαίνει απαλή έντεχνη μουσική, με ένα ποτήρι Πιτσιλαδή στο τραπέζι εσύ θα ακούς θάλασσα.

TIP: Η ταραμοσαλάτα από άσπρο ταραμά εμπλουτίζεται με ένα μυστικό υλικό που κάνει τη γεύση της πλουσιότερη και πιο ιδιαίτερη.

Χαλανδριανόν Παράσχου 8 & Βασ. Γεωργίου, Χαλάνδρι , τηλ. 2106810085, 6932597444

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