Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I add a listener to my marker which reads "Hi" when the marker is clicked. My code looks like :

<!DOCTYPE html>
<html>
  <head>
    <meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
    <style type="text/css">
      html { height: 100% }
      body { height: 100%; margin: 0; padding: 0 }
      #map_canvas { height: 100% }
    </style>
    <script type="text/javascript"
      src="http://maps.googleapis.com/maps/api/js?key=AIzaSyAGcwOypxqebsKcF-A6pZUqDvijKbjltw0&sensor=false">
    </script>
    <script type="text/javascript">
      function initialize() {
    var myLatlng = new google.maps.LatLng(61.455019, 23.84559);

    var myOptions = {
        zoom: 15,
        center: myLatlng,
        mapTypeId: google.maps.MapTypeId.TERRAIN
    }

    var myMap = new google.maps.Map(document.getElementById("map_canvas"), myOptions);

    var myMarker = new google.maps.Marker({
        position: myLatlng,
        map: myMap,
    });

    google.maps.event.addListener(myMarker, 'click',
      function() 
      {
         var htmlString = "Hi";
         myMarker.openInfoWindowHtml(htmlString);
      }
   );
}
    </script>
  </head>
  <body onload="initialize()">
    <div id="map_canvas" style="width:100%; height:100%"></div>
  </body>
</html>

I think I am going somewhere wrong while calling the addListener event.

share|improve this question

1 Answer

See the documentation on infowindow for the Google Maps API v3, there is no .openInfoWindowHtml method.

Working example from the documentation

Working version of your map using v3 syntax

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.