Skip to content
Snippets Groups Projects
Verified Commit 8a5b7ccc authored by Alexander Dunkel's avatar Alexander Dunkel
Browse files

Clean up test code

parent 9fc64ac9
No related branches found
No related tags found
No related merge requests found
......@@ -1169,7 +1169,7 @@ places_layer.opts(
</div>
**Store map as static HTML file**
**Display map**
```python
gv_layers.opts(
......@@ -1182,6 +1182,8 @@ gv_layers.opts(
hooks=[set_active_tool])
```
**Store map as static HTML file**
```python
gv_layers.opts(
projection=ccrs.GOOGLE_MERCATOR,
......@@ -1205,22 +1207,6 @@ hv.save(
</div>
**Display in-line view of the map:**
```python
gv_layers.opts(
width=800,
height=480,
responsive=False,
hooks=[set_active_tool],
title=df.loc[0, "name"],
projection=ccrs.GOOGLE_MERCATOR,
data_aspect=1,
xlim=(bbox_bottomleft[0], bbox_topright[0]),
ylim=(bbox_bottomleft[1], bbox_topright[1])
)
```
## Create Notebook HTML
- For archive purposes, we can convert the entire notebook, including interactive maps and graphics, to an HTML file.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment