这是bokeh文档中“映射地理数据”的示例代码
from bokeh.plotting import figure, show, output_file
from bokeh.tile_providers import CARTODBPOSITRON
output_notebook()
# range bounds supplied in web mercator coordinates
p = figure(x_range=(-2000000, 6000000), y_range= (-1000000, 7000000), x_axis_type="mercator", y_axis_type="mercator")
p.add_tile(CARTODBPOSITRON)
show(p)
我想在点击地图后访问纬度和经度坐标。
是否可以使用bokeh做到这一点?