IE6: does not load the Google Maps API v3

I am using the new Google Maps API v3 .

It works fine with Firefox / Chromo / Safari, but the map does not load in IE6.

Any ideas why the page loads my map in all browsers except IE6?

+3
source share
1 answer

Just replace this code

var marker = new google.maps.Marker({
    position: point,
    map:      map,
    icon:     image,
});

to that

var marker = new google.maps.Marker({
    position: point,
    map:      map,
    icon:     image
});

(line 509)

+3
source

Source: https://habr.com/ru/post/1719736/


All Articles