🖥️ IT, 컴퓨터/🐍 Python

[Python] 파이썬으로 지도 그리기 (1) Map tile의 종류 (feat. Folium)

김 홍시 2023. 1. 9.
반응형

 

 

Open street map

Folium defaults to using openstreetmap tiles. You can also access these tiles with:

1
folium.TileLayer('openstreetmap').add_to(my_map)

[Python] 파이썬으로 지도 그리기 (1) Map tile의 종류 (feat. Folium) - Open street map

Map Quest Open

Similar to open street map, mapquestopen tiles are a good general purpose tile set.

1
folium.TileLayer('mapquestopen').add_to(my_map)

[Python] 파이썬으로 지도 그리기 (1) Map tile의 종류 (feat. Folium) - Map Quest Open

MapQuest Open Aerial

Mapquest also provides open aerial photography to use as map tiles:

1
folium.TileLayer('MapQuest Open Aerial').add_to(my_map)

[Python] 파이썬으로 지도 그리기 (1) Map tile의 종류 (feat. Folium) - MapQuest Open Aerial

Mapbox Bright

Mapbox makes some nice map tiles, but the free versions only have limited levels of zoom available (i.e. you can’t zoom close in).

1
folium.TileLayer('Mapbox Bright').add_to(my_map)

[Python] 파이썬으로 지도 그리기 (1) Map tile의 종류 (feat. Folium) - Mapbox Bright

Mapbox Control Room

Control Room is another set of MapBox tiles. Again there are only limited levels of zoom available for the free version, but they do look cool.

1
folium.TileLayer('Mapbox Control Room').add_to(my_map)

[Python] 파이썬으로 지도 그리기 (1) Map tile의 종류 (feat. Folium) - Mapbox Control Room

 

Stamen Terrain

Stamen also produce some cool map tiles which typically work at all zoom levels. These terrain tiles are only available for the USA unfortunately.

1
folium.TileLayer('stamenterrain').add_to(my_map)

[Python] 파이썬으로 지도 그리기 (1) Map tile의 종류 (feat. Folium) - Stamen Terrain

Stamen Toner

The Stamen toner map tiles produce a black and white map that both looks striking and would be more suitable for printing than some of the other Folium map tiles.

1
folium.TileLayer('stamentoner').add_to(my_map)

[Python] 파이썬으로 지도 그리기 (1) Map tile의 종류 (feat. Folium) - Stamen Toner

Stamen Watercolor

To be honest I’m not sure where the Stamen Watercolor map tiles would be useful, but they look very cool.

1
folium.TileLayer('stamenwatercolor').add_to(my_map)

[Python] 파이썬으로 지도 그리기 (1) Map tile의 종류 (feat. Folium) - Stamen Watercolor

CartoDB Positron

The CartoDB folium map tiles are cool looking tiles and are available in the lighter “positron”, or “dark matter” (below)

1
folium.TileLayer('cartodbpositron').add_to(my_map)

[Python] 파이썬으로 지도 그리기 (1) Map tile의 종류 (feat. Folium) - CartoDB Positron

CartoDB Dark Matter

The CartoDB Dark Matter tiles are essentially a darker version of the above positron tiles.

1
folium.TileLayer('cartodbdark_matter').add_to(my_map)

[Python] 파이썬으로 지도 그리기 (1) Map tile의 종류 (feat. Folium) - CartoDB Dark Matter

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

출처

https://deparkes.co.uk/2016/06/10/folium-map-tiles/

 

Folium Map Tiles - deparkes

Improve the look of your map by changing the map tiles in folium. Folium map tiles are easy to change and there are some nice looking free ones....

deparkes.co.uk

 

반응형

댓글