I run the following code, displaying google map via bokeh with markers on the map:
gmap_options = GMapOptions(lat=lat, lng=lng,
map_type=map_type, zoom=zoom)
p = gmap(api_key, gmap_options, title='PhotosTrip',
width=bokeh_width, height=bokeh_height, tooltips=TOOLTIPS,
tools=[hover, 'reset', 'wheel_zoom', 'pan'])
p.circle('x', 'y' , size=8, alpha=0.5,
color='black', source=source)
How can I select the proper zoom so all markers will be displayed when the map opens?
Assuming that by omitting zoom it defaults to 12, and given the limited information, an approach would be as follows: