From 74ca8b838b1f7058b8f2de15842c0a8b9deee432 Mon Sep 17 00:00:00 2001 From: Oliver Jowett Date: Fri, 14 Oct 2016 21:44:21 +0100 Subject: [PATCH] Drop the maximum map marker size. --- public_html/planeObject.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public_html/planeObject.js b/public_html/planeObject.js index 04f007e..27f8468 100644 --- a/public_html/planeObject.js +++ b/public_html/planeObject.js @@ -301,7 +301,7 @@ PlaneObject.prototype.getMarkerColor = function() { } PlaneObject.prototype.updateIcon = function() { - var scaleFactor = Math.max(0.2, Math.min(2.5, 0.15 * Math.pow(1.25, ZoomLvl))).toFixed(1); + var scaleFactor = Math.max(0.2, Math.min(1.2, 0.15 * Math.pow(1.25, ZoomLvl))).toFixed(1); var col = this.getMarkerColor(); var opacity = 1.0;