Repo for non destructive e-scooter intervention materials
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

19 lines
412 B

import folium
import requests
import pprint
#make api requests
r = requests.get('https://platform.tier-services.io')
#create map object
m = folium.Map(location=[52.521302, 13.410377], zoom_start=15)
#create markers
folium.Marker([52.511154,13.442811],
popup='<strong>Berghain<strong/>',
tooltip='ja was isch jetzt aus des?',
icon=folium.Icon(icon='cloud')).add_to(m)
#generate map.html
m.save('map.html')