        var map;
        var dr;

        function initialize() {
            map = new GMap2(document.getElementById("map_canvas"));
            var gm = new GMarker(new GLatLng(41.012295, 28.977731), { title: "Olimpiyat Hotel" });
            gm.bindInfoWindowHtml("<html><head></head><body>Olimpiyat Hotel</body></html>");
            map.addOverlay(gm);
            map.setCenter(new GLatLng(41.012289,28.977578), 16);
            map.setUIToDefault();
            dr = new GDirections(map, document.getElementById("result"));
        }

        function GoToDirection(value, d, destination) {

            d.clear();
            var culture = "en";
            if (window.location.href.indexOf('/tr/') > -1) {
                culture = "tr";
            }
            else if (window.location.href.indexOf('/en/') > -1) {
                culture = "en";
            }
            else if (window.location.href.indexOf('/es/') > -1) {
                culture = "es";
            }

            // Topkapi :
            d.load("from:41.012295, 28.977731 to:" + destination, { travelMode: G_TRAVEL_MODE_WALKING, locale: culture });

        }
