Skip to content Skip to sidebar Skip to footer

Some Google Map Markers Not Showing Up In Internet Explorer But Show Up In All Other Browsers

I have a Google Map on our site that has a list of markers which are brought in using the following code: $('.map-overlay-right').click(function () { var map = new GMap2(docume

Solution 1:

Marker 42 in your marker XML has a malformed latitude:

<marker id="42" lat="-12.968270," lng="28.633699" label="Ndola, Zambia">

Note the trailing comma in the lat attribute.

Post a Comment for "Some Google Map Markers Not Showing Up In Internet Explorer But Show Up In All Other Browsers"