increase max size for portals, otherwise unclaimed ones are really hard to see

This commit is contained in:
Stefan Breunig
2013-02-11 00:05:12 +01:00
parent e92a9e13b1
commit 210cbbfcc5

View File

@ -230,7 +230,7 @@ window.renderPortal = function(ent) {
var lvWeight = Math.max(2, portalLevel / 1.5);
var lvRadius = portalLevel + 3;
var lvRadius = Math.max(portalLevel + 3, 5);
var p = L.circleMarker(latlng, {
radius: lvRadius,