Skip to content

Instantly share code, notes, and snippets.

@lkrimphove
Last active August 6, 2023 13:03
Show Gist options
  • Save lkrimphove/2ed75dae1aa2f6b7a8ed04d8d303c53a to your computer and use it in GitHub Desktop.
Save lkrimphove/2ed75dae1aa2f6b7a8ed04d8d303c53a to your computer and use it in GitHub Desktop.
### CONFIG
# LOCATION = None
LOCATION = [48.13743, 11.57549] # latitude, longitude
ZOOM_START = 10
ACTIVITY_TYPES = {
'Hiking': {
'icon': 'person-hiking',
'color': 'green'
},
'Running': {
'icon': 'person-running',
'color': 'orange'
},
'Biking': {
'icon': 'person-biking',
'color': 'red'
},
'Skiing': {
'icon': 'person-skiing',
'color': 'blue'
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment