Reputation: 525
On 3/2/11 Google released version 3.4 of Google Maps. The new version uses canvas to create the markers in browsers that support it. I would like to disable this feature. Is that possible?
Upvotes: 7
Views: 6073
Reputation: 411
Check out the optimized
property of google.maps.MarkerOptions
.
http://code.google.com/apis/maps/documentation/javascript/reference.html#MarkerOptions
marker = new google.maps.Marker({
icon: getIcon(),
zIndex: 210,
map: map,
optimized: false,
title: name
})
Upvotes: 11