Example of Geocoding With Point Geometry: Kazakhstan#
from lets_plot.geo_data import *
from lets_plot import *
The geodata is provided by © OpenStreetMap contributors and is made available here under the Open Database License (ODbL).
LetsPlot.setup_html()
country = 'Kazakhstan'
gdf_country = geocode_countries(names=country).inc_res().get_boundaries()
gdf = geocode_states().scope(country).get_centroids()
ggplot() + \
geom_map(data=gdf_country, fill='darkslategray', size=0) + \
geom_point(data=gdf, color='white', size=5, \
tooltips=layer_tooltips().line('@{found name}')) + \
ggsize(800, 600) + ggtitle(country) + \
theme_void()