如何并排显示两个大叶地图?(类似于下图,但我希望显示大叶地图而不是 matplotlib 图表)

编辑:我想在 jupyter notebook 中显示这些地图。这是我当前的代码,垂直显示两个地图(堆叠)。
map_toronto = folium.Map(location=[43.6532, -79.3832], zoom_start=11)
# add markers to map
for lat, lng, borough in zip(toronto_df['Latitude'], toronto_df['Longitude'], toronto_df['District']):
label = '{}'.format(borough)
label = folium.Popup(label, parse_html=True)
folium.CircleMarker(
[lat, lng],
radius=5,
popup=label,
color='blue',
fill=True,
fill_color='#3186cc',
fill_opacity=0.7,
parse_html=False).add_to(map_toronto)
map_toronto
map_nyc = folium.Map(location=[40.7128, -74.0060], zoom_start=10)
# add markers to map
for lat, lng, borough in zip(nyc_df['Latitude'], nyc_df['Longitude'], nyc_df['District']):
label = '{}'.format(borough)
label = folium.Popup(label, parse_html=True)
folium.CircleMarker(
[lat, lng],
radius=5,
popup=label,
color='blue',
fill=True,
fill_color='#3186cc',
fill_opacity=0.7,
parse_html=False).add_to(map_nyc)
map_nyc
Run Code Online (Sandbox Code Playgroud)