gmaps
gmaps copied to clipboard
Google maps for Jupyter notebooks
when I run this command in my terminal: `jupyter nbextension enable --py --sys-prefix gmaps` From the installation [tutorial ](https://jupyter-gmaps.readthedocs.io/en/latest/install.html), I get this error. > AttributeError: module 'ipywidgets.widgets.trait_types' has no attribute...
Hi, after updating jupyter & co. I'm not able anymore to show the map, I got instead: **Error displaying widget: model not found** In the console there is this error:...
This may be because you did not pass in an API key, or the key you passed in was incorrect. Check the browser console, look for errors that start with...
During the generation of multiple heatmaps at the same location, I noticed the generated html files keep increasing in size without an equivalent increase in the volume at a given...
Versions: OS: macOS Monterey 12.3.1 IPython : 8.0.1 ipykernel : 6.9.1 ipywidgets : 7.7.0 jupyter_client : 7.1.2 jupyter_core : 4.9.1 jupyter_server : 1.17.0 jupyterlab : 3.3.4 nbclient : 0.6.0 nbconvert...
Is there a way to do the following? fig = gmaps.figure(center=center, zoom_level=11, map_type='HYBRID') heatmap_layer = gmaps.heatmap_layer(d[['location_latitude', 'location_longitude']]) heatmap_layer.max_intensity = 100 heatmap_layer.point_radius = 5 fig.add_layer(heatmap_layer) fig.save('xyz.png') #
Hello, I'm trying to run the example from the documentation: ``` import gmaps gmaps.configure(api_key='KEY...') nuclear_power_plants = [ {'name': 'Atucha', 'location': (-34.0, -59.167), 'active_reactors': 1}, {'name': 'Embalse', 'location': (-32.2333, -64.4333), 'active_reactors':...
This PR addresses https://github.com/pbugnion/gmaps/issues/352. Try to access the abstract base classes on the collections object, and if we cannot they need to be accessed from collections.abc.
Running in Python 3.10 and calling `gmaps.symbol_layer()` with `info_boxes` set to a list of strings: ``` File ~\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\LocalCache\local-packages\Python310\site-packages\gmaps\options.py:40, in is_atomic(elem) 34 def is_atomic(elem): 35 """ 36 True if an element...
Hello, I am just starting out with this package (thank you for it!), and trying to following the examples, including the instructions here: https://jupyter-gmaps.readthedocs.io/en/latest/export.html However, the directions layer is not...