Update font size of marker cluster number and add plus. feature/markerClusters
authorSteve Sutton <steve@gaslightmedia.com>
Thu, 28 Jun 2018 17:11:30 +0000 (13:11 -0400)
committerSteve Sutton <steve@gaslightmedia.com>
Thu, 28 Jun 2018 17:11:30 +0000 (13:11 -0400)
Adding plus sign into the images.
Update js file to increase the font size.

js/googleMapsMarkerClusterer/images/m1.png
js/googleMapsMarkerClusterer/images/m2.png
js/googleMapsMarkerClusterer/images/m3.png
js/googleMapsMarkerClusterer/images/m4.png
js/googleMapsMarkerClusterer/images/m5.png
js/googleMapsMarkerClusterer/markerclustererplus.js

index 329ff52..acb2b1c 100644 (file)
Binary files a/js/googleMapsMarkerClusterer/images/m1.png and b/js/googleMapsMarkerClusterer/images/m1.png differ
index b999cbc..ea0c30a 100644 (file)
Binary files a/js/googleMapsMarkerClusterer/images/m2.png and b/js/googleMapsMarkerClusterer/images/m2.png differ
index 9f30b30..edebc0f 100644 (file)
Binary files a/js/googleMapsMarkerClusterer/images/m3.png and b/js/googleMapsMarkerClusterer/images/m3.png differ
index 0d3f826..a4074db 100644 (file)
Binary files a/js/googleMapsMarkerClusterer/images/m4.png and b/js/googleMapsMarkerClusterer/images/m4.png differ
index 61387d2..ed34a21 100644 (file)
Binary files a/js/googleMapsMarkerClusterer/images/m5.png and b/js/googleMapsMarkerClusterer/images/m5.png differ
index a3c98e2..0f2a718 100644 (file)
@@ -295,7 +295,7 @@ ClusterIcon.prototype.useStyle = function (sums) {
   this.anchorText_ = style.anchorText || [0, 0];
   this.anchorIcon_ = style.anchorIcon || [parseInt(this.height_ / 2, 10), parseInt(this.width_ / 2, 10)];
   this.textColor_ = style.textColor || "black";
-  this.textSize_ = style.textSize || 11;
+  this.textSize_ = style.textSize || 14;
   this.textDecoration_ = style.textDecoration || "none";
   this.fontWeight_ = style.fontWeight || "bold";
   this.fontStyle_ = style.fontStyle || "normal";
@@ -1193,7 +1193,7 @@ MarkerClusterer.prototype.addMarkers = function (markers, opt_nodraw) {
     if (markers.hasOwnProperty(key)) {
       this.pushMarkerTo_(markers[key]);
     }
-  }  
+  }
   if (!opt_nodraw) {
     this.redraw_();
   }