PYTHON CODING
- waclaw_koscielniak

- Nov 6
- 1 min read
import folium
# Create a map centered at a specific location
m = folium.Map(location=[40.7128, -74.0060], zoom_start=12)
# Add a marker to the map
folium.Marker([40.7128, -74.0060], popup="New York City").add_to(m)
# Save the map as an HTML file
m.save("New York.html")



Try your city.