Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm having a weird problem with my google maps marker icons in internet explorer. All my markers are showing up cut in half doubled and shifted over 50 %.

http://imgur.com/bPmLC

that is using the demo code from google. So it must be something weird i'm doing elsewhere with styles or jquery, but i don't know what. Has anyone had this problem before?

share|improve this question
recently i have odd behaviors with my google map demos on jsfiddle also. seems to me the rendering doesn't refresh very well. so, what i did is after applying changes to map i "refresh it" with map.setCenter(<new latlng>); and then re-zoom. Furthermore, the issue seems deal with any overlay on the map. – kjy112 Apr 25 '11 at 16:20

6 Answers

I had a similar issue. The problem being that each marker icon inherited a margin>0, I solved the issue by setting the margin to zero for all img in the map div.

<style type="text/css">
   #map_canvas img {
       margin: 0px
   }
</style>
share|improve this answer
This turned out to be the issue for me too. The API generates different elements for Firefox and Chrome, so you can't use Firebug. To find out what style is giving you trouble in IE, use the IE7 browser mode, and be sure to hit the refresh button in the Developer Tools toolbar after the map loads. That will refresh the DOM and let you select the marker image to inspect it. Use the Trace Styles pane to find the offending style. – Jerph Sep 22 '11 at 15:20

I fixed this problem by using a stable version of the api like...

http://maps.google.com/maps/api/js?v=3.2&sensor=false

instead of the nightly dev build...(http://maps.google.com/maps/api/js?sensor=false)

share|improve this answer
This fixed the IE7 specific problem I was having. Thanks – David May 23 '11 at 21:36
Ok, I managed to fix this issue by putting in the link as above, but it's suddenly started breaking again. Anyone else had this issue? – Piers Karsenbarg Sep 8 '11 at 15:15
Didnt work for me – Pinakin Shah Feb 29 '12 at 10:37

I had similar problem, (i used custom marker images, and they were shifted by 1px left and bottom in IE7-8)

This code solved the problem:

<!--[if IE]>
  <style>
    div#map img{
      margin-top: -1px;
      margin-left: -1px;
    }
  </style>
<![endif]-->

Where map is the id of the google map api container div.

share|improve this answer
Worked good! Hope it wont break with new releases – Pinakin Shah Feb 29 '12 at 10:38

I tried the #map_canvas img { margin: 0px; } solution above, but it only half worked. I changed it to #map_canvas img { margin: -5px; } and applied to the IE7 & IE8 stylesheet.

share|improve this answer

I had the same problem; I had to set both the margin and the padding to 0:

#map img {
    margin:0px;
    padding:0px;
}
share|improve this answer

parseInt around the values made it for me

new google.maps.Size(parseInt(width), parseInt(height))
new google.maps.Point(parseInt(width)/2, parseInt(height))
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.