Marker Clusterer Plus - Issue with icon optimized for retina display
Opened this issue · 2 comments
GoogleCodeExporter commented
Demo link or sample code:
Issue is in all maps and all situations
Expected result:
If i use an icon optimized for retina display, and setting enableRetinaIcons
option to true, on NOT retina display the icon should be displayed at the
dimensions that i decided by width and height parameter.
Actual result:
The icon is displayed with its original dimension (doubled).
Version: all
Browser / Operating System:
all
Additional comments:
@line 252
if (!this.cluster_.getMarkerClusterer().enableRetinaIcons_) {
img += "clip: rect(" + (-1 * spriteV) + "px, " + ((-1 * spriteH) + this.width_) + "px, " +
((-1 * spriteV) + this.height_) + "px, " + (-1 * spriteH) + "px);";
}
Right after this should be added:
else {
img += "width: " + this.width_ + "px;" + "height: " + this.height_ + "px;";
}
Original issue reported on code.google.com by alessiod...@gmail.com
on 31 Mar 2014 at 1:08
GoogleCodeExporter commented
Experiencing the same problem. The above solution fixed it for me.
Original comment by reu...@domain7.com
on 18 Apr 2014 at 4:08
GoogleCodeExporter commented
Issue 303 has been merged into this issue.
Original comment by brett.mc...@gmail.com
on 9 Jun 2014 at 3:26