Skip to content

Commit 83e3a3d

Browse files
committed
Update worldmap.js
1 parent 38549f2 commit 83e3a3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

worldmap/worldmap.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1827,7 +1827,7 @@ function setMarker(data) {
18271827
var siz = 32;
18281828
var sizc = 16;
18291829
if (data?.iconSize && !isNaN(data.iconSize)) {
1830-
if (data.iconSize >= 8 && data.iconSize <= 256) {
1830+
if (data.iconSize >= 8 && data.iconSize <= 512) {
18311831
siz = data.iconSize;
18321832
sizc = Math.round(siz/2);
18331833
}

0 commit comments

Comments
 (0)