kstukstu / google-maps-utility-library-v3

Automatically exported from code.google.com/p/google-maps-utility-library-v3
0 stars 0 forks source link

MarkerClusterer zoomOnClick option doesn't work #18

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
The test should be something like:

  this.zoomOnClick_ = true;
  if (typeof options['zoomOnClick'] != "undefined") {
      this.zoomOnClick_ = options['zoomOnClick'];
  }

Original issue reported on code.google.com by joen...@gmail.com on 26 Jun 2010 at 2:26

GoogleCodeExporter commented 9 years ago
I edited the file for that line to to read:
this.zoomOnClick_ = ( options['zoomOnClick'] != null ) ? options['zoomOnClick'] 
: true;

Original comment by dotdotdo...@gmail.com on 28 Aug 2010 at 4:45

GoogleCodeExporter commented 9 years ago
This was fixed in the trunk a while back

Original comment by lu...@google.com on 31 Aug 2010 at 1:42