Folium
In [6]:
Copied!
In [1]:
Copied!
import pyrcgeos.foliumap as pyrcgeos
import pyrcgeos.foliumap as pyrcgeos
In [2]:
Copied!
url = 'http://mt0.google.com/vt/lyrs=s&hl=en&x={x}&y={y}&z={z}'
url = 'http://mt0.google.com/vt/lyrs=s&hl=en&x={x}&y={y}&z={z}'
In [3]:
Copied!
m = pyrcgeos.Map(center=(40.71, -74.01), zoom=12)
m.add_tile_layer(url=url,name="Satellite", attribution="Google")
m
m = pyrcgeos.Map(center=(40.71, -74.01), zoom=12)
m.add_tile_layer(url=url,name="Satellite", attribution="Google")
m
Out[3]:
Make this Notebook Trusted to load map: File -> Trust Notebook
In [4]:
Copied!
import folium
m = folium.Map(location=[45.52,-122.67],zoom_start=5)
m
import folium
m = folium.Map(location=[45.52,-122.67],zoom_start=5)
m
Out[4]:
Make this Notebook Trusted to load map: File -> Trust Notebook
In [5]:
Copied!
m
m
Out[5]:
Make this Notebook Trusted to load map: File -> Trust Notebook
In [ ]:
Copied!
Last update:
2023-05-05