<br><br><div class="gmail_quote">On Tue, Oct 13, 2009 at 1:37 PM, Hans Langouche <span dir="ltr">&lt;<a href="mailto:hans.langouche@gmail.com">hans.langouche@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hi there,<br>
<br>
I&#39;m using the drupal gmap module to display some maps and markers.  Now I want to extend the functionality with some ajax stuff and I&#39;m having difficulties understanding the javascript Drupal.gmap object.<br>
<br>
I figured out how to access the google maps object:<br>
var m = Drupal.gmap.getMap(&#39;yourmapid&#39;);<br>
googleobject = m.map<br>
<br>
Now when looking at the code, I see there are some interesting marker functions defined already in marker.js (and gmap_markers.js).  My question is how to access these functions as I always get a not defined error.<br>
<br>
m.addmarker(...);<br>
or<br>
m.clearmarkers();<br>
<br>
throw above error.<br>
<br>
Tnx,<br>
<br>
HnLn<br>
</blockquote></div><br><br>try map.change(&#39;EVENT&#39;, -1, data);<br>e.g. mapchange(&#39;addmarker&#39;, -1, markerObject);<br>-1 means execute all addmarker hooks of the map.<br>