# 6. 완성된 리스트로 지도 그리기
import folium
# 행정동명 앞에 순위 표시하기
for i in range(len(top10_name)):
top10_name[i] = str(i + 1) + '. ' + top10_name[i]
map_top10 = folium.Map([top10_lat[0], top10_long[0]], zoom_start=12)
for i in range(10):
folium.Marker(
[top10_lat[i], top10_long[i]], tooltip=top10_name[i],
icon=folium.Icon(color='red', icon='star')
).add_to(map_top10)
map_top10
실행결과
과정이 좀 길긴 했지만, 알고리즘을 작성한 것처럼 단계별로 나누어 진행하면 더 체계적이고 쉽게 프로그래밍할 수 있습니다.