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: if key == SERVER_FRIENDLY:
color = '#FFAC05' color = '#FFAC05'
marker = '*' marker = '*'
markersize = 10 markersize = 8
zord = 3 zord = 3
alph = 1 alph = 1
else: 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'])) print('Platform: {} is missing from PLATFORM_COLORS. Using DEFAULT_COLOR.'.format(data['platform']))
marker = '.' marker = '.'
if data['play_count'] >= 100: if data['play_count'] >= 100:
markersize = (data['play_count'] * .1) markersize = (data['play_count'] * .01)
elif data['play_count'] <= 2: elif data['play_count'] <= 2:
markersize = 2 markersize = 1
else: else:
markersize = 2 markersize = 2
zord = 2 zord = 2