Kenzic
Kenzic

Reputation: 525

Google Maps V3: Disable Canvas Markers

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

Answers (1)

normanrz
normanrz

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

Related Questions