top of page
Search

PYTHON CODING

  • Writer: waclaw_koscielniak
    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")
ree


 
 
 

1 Comment


Guest
Nov 06

Try your city.

Like
bottom of page