﻿

    function initialize() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map_canvas"));
        map.setCenter(new GLatLng(39.911900,32.857900), 15);
      
        map.setUIToDefault();

        // Create a base icon for all of our markers that specifies the
        // shadow, icon dimensions, etc.
        var baseIcon = new GIcon(G_DEFAULT_ICON);
        baseIcon.shadow = "http://www.google.com/mapfiles/shadow50.png";
        baseIcon.iconSize = new GSize(20, 34);
        baseIcon.shadowSize = new GSize(37, 34);
        baseIcon.iconAnchor = new GPoint(9, 34);
        baseIcon.infoWindowAnchor = new GPoint(9, 2);

        // Creates a marker whose info window displays the letter corresponding
        // to the given index.
        function createMarker(point, index) {
          // Create a lettered icon for this point using our icon class
          var letter = String.fromCharCode("A".charCodeAt(0) + index);
          var letteredIcon = new GIcon(baseIcon);
          letteredIcon.image = "http://www.google.com/mapfiles/marker" + letter + ".png";

          // Set up our GMarkerOptions object
          markerOptions = { icon:letteredIcon };
          var marker = new GMarker(point, markerOptions);

          GEvent.addListener(marker, "click", function() {
          marker.openInfoWindowHtml("<div style=\"text-align:center;color:#C30; font-family:Tahoma\">      <p><strong style=\"font-size:18px\">NET &#304;LET&#304;&#350;&#304;M        </strong></p>      <p style=\"font-size:15px\">B&uuml;kl&uuml;m Sokak No:8/14 Kavakl&#305;dere-ANKARA  </p>   </div>");
          });

          marker.openInfoWindowHtml("<div style=\"text-align:center;color:#C30; font-family:Tahoma\">      <p><strong style=\"font-size:18px\">NET &#304;LET&#304;&#350;&#304;M        </strong></p>      <p style=\"font-size:15px\">B&uuml;kl&uuml;m Sokak No:8/14 Kavakl&#305;dere-ANKARA  </p>   </div>");
     
          return marker;
        }

   
          var latlng = new GLatLng(39.911900,32.857900);
          map.addOverlay(createMarker(latlng, 0));
    }
    }

