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.

23 lines
496 B

4 years ago
import folium
import requests
import json
4 years ago
#import scooter data
4 years ago
with open('1scooter.json') as file:
data = json.load(file)
lat = data['data']['attributes']['lat']
lng = data['data']['attributes']['lng']
4 years ago
#create map object
4 years ago
m = folium.Map(location=[52.516190, 13.377693], zoom_start=13)
4 years ago
#create markers
folium.Marker([lat,lng],
4 years ago
popup='<strong>ARTIST_NAME + ARTWORK_TITLE<strong/>',
tooltip='ARTIST_NAME_HERE',
4 years ago
icon=folium.Icon(icon='cloud')).add_to(m)
#generate map.html
m.save('map.html')