Marker size changes

This commit is contained in:
blacktwin 2022-12-13 01:34:53 -05:00
parent e6637bf3b7
commit 62e7bbc209

View File

@ -305,7 +305,7 @@ def draw_map(map_type, geo_dict, filename, headless, leg_choice):
if key == SERVER_FRIENDLY:
color = '#FFAC05'
marker = '*'
markersize = 10
markersize = 8
zord = 3
alph = 1
else:
@ -316,9 +316,9 @@ def draw_map(map_type, geo_dict, filename, headless, leg_choice):
print('Platform: {} is missing from PLATFORM_COLORS. Using DEFAULT_COLOR.'.format(data['platform']))
marker = '.'
if data['play_count'] >= 100:
markersize = (data['play_count'] * .1)
markersize = (data['play_count'] * .01)
elif data['play_count'] <= 2:
markersize = 2
markersize = 1
else:
markersize = 2
zord = 2