I'm setting up a extjs panel with a GMap2 embedded. Here's the setup:

 map = new GMap2(document.getElementById("gmappanel"));
 map.setCenter(new GLatLng(58.019257, -115.572402), 3);
 map.setUIToDefault();

I'm using the example from here so that when I click a marker, I get an info window. The problem is, the event fires and I can see the proper HTML in the console, but nothing else happens. The info window simply doesn't open. no error, nothing.

Here's the code for that:

 function createMarker(point, val) {
    var marker = new GMarker(point);
    var name = val.data.name;
    var html = "<table class='marker'>";
    html += "<tr><td>Name: </td><td>" + name + "</td></tr>";
    html += "</table>";

    GEvent.addListener(marker, "click", function() {
        marker.openInfoWindowHtml(html);
        debug("Marker fired");
    });

    return marker;
}

Here's how I call it:

 var marker = createMarker(point,store.getAt(i));

Any ideas?

link|improve this question

At some point after calling createMarker, I imagine you add it to the map with a map.addOverlay(marker)? – Hugh Oct 6 '11 at 14:03
Yes I do. The marker appears, but the event doesn't fire. – jeffkolez Oct 10 '11 at 16:01
feedback

3 Answers

Sounds like your HTML is not valid. Can you dump some example html data that you are passing to the openInfoWindowHtml? Your createMarker function works just fine with :

var html = "<table class='marker'><tr><td>Name: </td><td> sometext </td></tr></table>";

what version of the api are you using? 2.x?

link|improve this answer
The HTML is definitely valid. I even tried simply passing in a string. I'm using 2.X. – jeffkolez Oct 6 '11 at 15:56
feedback

Possibly you want bindInfoWindowHtml, not openInfoWindowHtml.

Something along the lines of..

function createMarker(point, val) {
    var marker = new GMarker(point);
    var name = val.data.name;
    var html = "<table class='marker'>";
    html += "<tr><td>Name: </td><td>" + name + "</td></tr>";
    html += "</table>";
    marker.bindInfoWindowHtml(html);
    return marker;
}
link|improve this answer
Did this answer fixed the problem? – P Bear Oct 10 '11 at 20:31
feedback

You also have two marker variables defined in different scopes, check to make sure you have the listener on the right "marker".

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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