Created
April 21, 2020 11:58
-
-
Save abhishek-shrm/11cec336137e2b660a56e82f5859e4ad to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fig2=Figure(width=550,height=350) | |
m2=folium.Map(location=[28.644800, 77.216721]) | |
fig2.add_child(m2) | |
folium.TileLayer('Stamen Terrain').add_to(m2) | |
folium.TileLayer('Stamen Toner').add_to(m2) | |
folium.TileLayer('Stamen Water Color').add_to(m2) | |
folium.TileLayer('cartodbpositron').add_to(m2) | |
folium.TileLayer('cartodbdark_matter').add_to(m2) | |
folium.LayerControl().add_to(m2) | |
m2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment