Displaying 2 results from an estimated 2 matches for "openinfowindow".
2008 Mar 11
0
support passing dom element to Marker''s setInfoBubble
...rols no longer fire events. Is there a way
to have the elements in the infoBubble fire events using the current API? If
not would if be possible to add support for infoBubble to accept a DOM node?
I see that Google Maps API supports passing of a DOM node as an argument.
Not sure about the others.
openInfoWindow(point, node, opts?)
Opens a simple info window at the given point. Pans the map such that the
opened info window is fully visible. The content of the info window is given
as a DOM node.
Please advise.
Thanks,
Sanjiv
-------------- next part --------------
An HTML attachment was scrubbed...
URL: h...
2009 Jun 01
0
[mapstraction commit] r12 - Implemented most Cloudmade functions. Still requires image, tile and KML/GeoRSS overlays
...= new CM.Marker(pt, options);
+
+	    if (this.infoBubble) {
+	      cmarker.bindInfoWindow(this.infoBubble);
+	    }
+
+
+	    return cmarker;
          },
          openBubble: function() {		
-            // TODO: Add provider code
+            var pin = this.proprietary_marker;
+            pin.openInfoWindow(this.infoBubble);
          },
          hide: function() {
-            // TODO: Add provider code
+            var pin = this.proprietary_marker;
+            pin.hide();
          },
          show: function() {
-            // TODO: Add provider code
+            var pin = this.proprietary_ma...