Skip to content

Commit

Permalink
deploy: a838646
Browse files Browse the repository at this point in the history
  • Loading branch information
Conengmo committed Oct 26, 2023
1 parent 90a6e70 commit 2d58ccd
Show file tree
Hide file tree
Showing 163 changed files with 13,529 additions and 13,363 deletions.
2 changes: 1 addition & 1 deletion latest/.buildinfo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: 780443e79b6bcc0ae89070b1891adef3
config: de76e41ca5577ba0aa14269b2c3f3266
tags: 645f666f9bcd5a90fca523b33c5a78b7
Binary file modified latest/_images/user_guide_plugins_timeslider_choropleth_12_0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions latest/_sources/advanced_guide/custom_panes.md.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ We'll make an example to show how the GeoJson we add hides any labels
underneath.

```{code-cell} ipython3
m = folium.Map([43, -100], zoom_start=4, tiles="stamentoner")
m = folium.Map([43, -100], zoom_start=4)

folium.GeoJson(geo_json_data, style_function=style_function).add_to(m)

Expand All @@ -43,14 +43,14 @@ Now we'll create a custom pane and add a tile layer that contains only labels.
The labels will show on top off the geojson.

```{code-cell} ipython3
m = folium.Map([43, -100], zoom_start=4, tiles="stamentonerbackground")
m = folium.Map([43, -100], zoom_start=4, tiles="cartodbpositronnolabels")

folium.GeoJson(geo_json_data, style_function=style_function).add_to(m)

folium.map.CustomPane("labels").add_to(m)

# Final layer associated to custom pane via the appropriate kwarg
folium.TileLayer("stamentonerlabels", pane="labels").add_to(m)
folium.TileLayer("cartodbpositrononlylabels", pane="labels").add_to(m)

m
```
3 changes: 1 addition & 2 deletions latest/_sources/advanced_guide/subplots.md.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ subplot1 = fig.add_subplot(1, 2, 1)
subplot2 = fig.add_subplot(1, 2, 2)

subplot1.add_child(
folium.Map([0, 0], tiles="stamenwatercolor", zoom_start=1)
folium.Map([0, 0], zoom_start=1)
)
subplot2.add_child(
folium.Map([46, 3], tiles="OpenStreetMap", zoom_start=5)
Expand Down Expand Up @@ -54,7 +54,6 @@ f = branca.element.Figure()
# Create two maps.
m = folium.Map(
location=[0, 0],
tiles="stamenwatercolor",
zoom_start=1,
position="absolute",
left="0%",
Expand Down
4 changes: 2 additions & 2 deletions latest/_sources/getting_started.md.txt
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ m.save("index.html")
Choosing a tileset
------------------

The default tiles are set to `OpenStreetMap`, but a selection of tilesets from Stamen and CartoDB are also built in.
The default tiles are set to `OpenStreetMap`, but a selection of tilesets are also built in.

```{code-cell} ipython3
folium.Map((45.5236, -122.6750), tiles="cartodb positron")
Expand All @@ -81,7 +81,7 @@ There are various marker types, here we start with a simple `Marker`. You can ad
tooltip. You can also pick colors and icons.

```{code-cell} ipython3
m = folium.Map([45.35, -121.6972], zoom_start=12, tiles="Stamen Terrain")
m = folium.Map([45.35, -121.6972], zoom_start=12)

folium.Marker(
location=[45.3288, -121.6625],
Expand Down
2 changes: 1 addition & 1 deletion latest/_sources/index.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ It enables both the binding of data to a map for choropleth visualizations
as well as passing rich vector/raster/HTML visualizations as markers on the map.

The library has a number of built-in tilesets from OpenStreetMap,
Mapbox, and Stamen, and supports custom tilesets.
Mapbox, etc, and supports custom tilesets.
Folium supports both Image, Video, GeoJSON and TopoJSON overlays and has a
number of vector layers built-in.

Expand Down
2 changes: 1 addition & 1 deletion latest/_sources/user_guide/plugins/heatmap.md.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ data = (
import folium
from folium.plugins import HeatMap

m = folium.Map([48.0, 5.0], tiles="stamentoner", zoom_start=6)
m = folium.Map([48.0, 5.0], zoom_start=6)

HeatMap(data).add_to(m)

Expand Down
6 changes: 3 additions & 3 deletions latest/_sources/user_guide/plugins/heatmap_with_time.md.txt
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ for time_entry in data:
```

```{code-cell} ipython3
m = folium.Map([48.0, 5.0], tiles="stamentoner", zoom_start=6)
m = folium.Map([48.0, 5.0], zoom_start=6)

hm = folium.plugins.HeatMapWithTime(data)

Expand All @@ -55,7 +55,7 @@ m

### Options

Now we show that the time index can be specified, allowing a more meaningful representation of what the time steps mean. We also enable the 'auto_play' option and change the maximum opacity. See the docmentation for a full list of options that can be used.
Now we show that the time index can be specified, allowing a more meaningful representation of what the time steps mean. We also enable the 'auto_play' option and change the maximum opacity. See the documentation for a full list of options that can be used.

```{code-cell} ipython3
from datetime import datetime, timedelta
Expand All @@ -66,7 +66,7 @@ time_index = [
```

```{code-cell} ipython3
m = folium.Map([48.0, 5.0], tiles="stamentoner", zoom_start=6)
m = folium.Map([48.0, 5.0], zoom_start=6)

hm = folium.plugins.HeatMapWithTime(data, index=time_index, auto_play=True, max_opacity=0.3)

Expand Down
2 changes: 1 addition & 1 deletion latest/_sources/user_guide/plugins/mini_map.md.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ m

```{code-cell} ipython3
m = folium.Map(location=(30, 20), zoom_start=4)
MiniMap(tile_layer="Stamen Toner").add_to(m)
MiniMap().add_to(m)
m
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Then, create the `TagFilterButton` object and let it know which tags you want to
from folium.plugins import TagFilterButton

# Create map and add the data with additional parameter tags as the segmentation
m = folium.Map([48., 5.], tiles='stamentoner', zoom_start=7)
m = folium.Map([48., 5.], zoom_start=7)
for i, latlng in enumerate(data):
category = category_column[i]
folium.Marker(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ import folium
from folium.plugins import TimeSliderChoropleth


m = folium.Map([0, 0], tiles="Stamen Toner", zoom_start=2)
m = folium.Map([0, 0], zoom_start=2)

TimeSliderChoropleth(
gdf.to_json(),
Expand All @@ -170,7 +170,7 @@ m
By default the timeslider starts at the beginning. You can also select another timestamp to begin with using the `init_timestamp` parameter. Note that it expects an index to the list of timestamps. In this example we use `-1` to select the last timestamp.

```{code-cell} ipython3
m = folium.Map([0, 0], tiles="Stamen Toner", zoom_start=2)
m = folium.Map([0, 0], zoom_start=2)

TimeSliderChoropleth(
gdf.to_json(),
Expand Down
4 changes: 2 additions & 2 deletions latest/_sources/user_guide/raster_layers/image_overlay.md.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ If you have a static image file on your disk, you can simply draw it on the map.
import os
import folium

m = folium.Map([37, 0], zoom_start=1, tiles="stamentoner")
m = folium.Map([37, 0], zoom_start=1)
merc = os.path.join("data", "Mercator_projection_SW.png")


Expand Down Expand Up @@ -46,7 +46,7 @@ A few remarks:
You can also provide simply URL. In this case, the image will not be embedded in folium's output.

```{code-cell} ipython3
m = folium.Map([37, 0], zoom_start=1, tiles="stamentoner")
m = folium.Map([37, 0], zoom_start=1)

folium.raster_layers.ImageOverlay(
image="https://upload.wikimedia.org/wikipedia/commons/f/f4/Mercator_projection_SW.jpg",
Expand Down
12 changes: 0 additions & 12 deletions latest/_sources/user_guide/raster_layers/tiles.md.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,6 @@ zoom_start = 8
folium.Map(location=[lat, lon], tiles="OpenStreetMap", zoom_start=zoom_start)
```

```{code-cell} ipython3
folium.Map(location=[lat, lon], tiles="Stamen Terrain", zoom_start=zoom_start)
```

```{code-cell} ipython3
folium.Map(location=[lat, lon], tiles="Stamen Toner", zoom_start=zoom_start)
```

```{code-cell} ipython3
folium.Map(location=[lat, lon], tiles="Stamen Watercolor", zoom_start=zoom_start)
```

```{code-cell} ipython3
folium.Map(location=[lat, lon], tiles="Cartodb Positron", zoom_start=zoom_start)
```
Expand Down
2 changes: 1 addition & 1 deletion latest/_sources/user_guide/ui_elements/icons.md.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ m
## Custom icon

```{code-cell} ipython3
m = folium.Map(location=[45.3288, -121.6625], zoom_start=12, tiles="Stamen Terrain")
m = folium.Map(location=[45.3288, -121.6625], zoom_start=12)

url = "https://leafletjs.com/examples/custom-icons/{}".format
icon_image = url("leaf-red.png")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Add a control to the map to show or hide layers.
m = folium.Map(tiles=None)

folium.TileLayer("OpenStreetMap").add_to(m)
folium.TileLayer("stamentoner", show=False).add_to(m)
folium.TileLayer(show=False).add_to(m)

folium.LayerControl().add_to(m)

Expand Down
2 changes: 1 addition & 1 deletion latest/_sources/user_guide/vector_layers/polyline.md.txt
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ lat = +38.89399
lon = -77.03659
zoom_start = 17

m = folium.Map(location=[lat, lon], tiles="stamen toner", zoom_start=zoom_start)
m = folium.Map(location=[lat, lon], zoom_start=zoom_start)

kw = {"color": "red", "fill": True, "radius": 20}

Expand Down
4 changes: 2 additions & 2 deletions latest/_static/documentation_options.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
const DOCUMENTATION_OPTIONS = {
VERSION: '0.1.dev1+g3715bad',
VERSION: '0.1.dev1+ga838646',
LANGUAGE: 'en',
COLLAPSE_INDEX: false,
BUILDER: 'html',
FILE_SUFFIX: '.html',
LINK_SUFFIX: '.html',
HAS_SOURCE: true,
SOURCELINK_SUFFIX: '.txt',
NAVIGATION_WITH_KEYS: true,
NAVIGATION_WITH_KEYS: false,
SHOW_SEARCH_SUMMARY: true,
ENABLE_SEARCH_SHORTCUTS: true,
};
2 changes: 1 addition & 1 deletion latest/_static/scripts/bootstrap.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions latest/_static/scripts/bootstrap.js.LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Bootstrap v5.2.3 (https://getbootstrap.com/)
* Copyright 2011-2022 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
* Bootstrap v5.3.2 (https://getbootstrap.com/)
* Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
*/
2 changes: 1 addition & 1 deletion latest/_static/scripts/bootstrap.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion latest/_static/scripts/pydata-sphinx-theme.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion latest/_static/scripts/pydata-sphinx-theme.js.map

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions latest/_static/styles/bootstrap.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions latest/_static/styles/bootstrap.css.map

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion latest/_static/styles/pydata-sphinx-theme.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions latest/_static/styles/pydata-sphinx-theme.css.map

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions latest/_static/webpack-macros.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,28 +4,28 @@
-->
{# Load FontAwesome icons #}
{% macro head_pre_icons() %}
<link href="{{ pathto('_static/vendor/fontawesome/6.1.2/css/all.min.css', 1) }}?digest=ac02cc09edc035673794" rel="stylesheet" />
<link href="{{ pathto('_static/vendor/fontawesome/6.1.2/css/all.min.css', 1) }}?digest=c5ced968eda925caa686" rel="stylesheet" />
<link rel="preload" as="font" type="font/woff2" crossorigin href="{{ pathto('_static/vendor/fontawesome/6.1.2/webfonts/fa-solid-900.woff2', 1) }}" />
<link rel="preload" as="font" type="font/woff2" crossorigin href="{{ pathto('_static/vendor/fontawesome/6.1.2/webfonts/fa-brands-400.woff2', 1) }}" />
<link rel="preload" as="font" type="font/woff2" crossorigin href="{{ pathto('_static/vendor/fontawesome/6.1.2/webfonts/fa-regular-400.woff2', 1) }}" />
{% endmacro %}

{% macro head_pre_assets() %}
<!-- Loaded before other Sphinx assets -->
<link href="{{ pathto('_static/styles/theme.css', 1) }}?digest=ac02cc09edc035673794" rel="stylesheet" />
<link href="{{ pathto('_static/styles/bootstrap.css', 1) }}?digest=ac02cc09edc035673794" rel="stylesheet" />
<link href="{{ pathto('_static/styles/pydata-sphinx-theme.css', 1) }}?digest=ac02cc09edc035673794" rel="stylesheet" />
<link href="{{ pathto('_static/styles/theme.css', 1) }}?digest=c5ced968eda925caa686" rel="stylesheet" />
<link href="{{ pathto('_static/styles/bootstrap.css', 1) }}?digest=c5ced968eda925caa686" rel="stylesheet" />
<link href="{{ pathto('_static/styles/pydata-sphinx-theme.css', 1) }}?digest=c5ced968eda925caa686" rel="stylesheet" />
{% endmacro %}

{% macro head_js_preload() %}
<!-- Pre-loaded scripts that we'll load fully later -->
<link rel="preload" as="script" href="{{ pathto('_static/scripts/bootstrap.js', 1) }}?digest=ac02cc09edc035673794" />
<link rel="preload" as="script" href="{{ pathto('_static/scripts/pydata-sphinx-theme.js', 1) }}?digest=ac02cc09edc035673794" />
<script src="{{ pathto('_static/vendor/fontawesome/6.1.2/js/all.min.js', 1) }}?digest=ac02cc09edc035673794"></script>
<link rel="preload" as="script" href="{{ pathto('_static/scripts/bootstrap.js', 1) }}?digest=c5ced968eda925caa686" />
<link rel="preload" as="script" href="{{ pathto('_static/scripts/pydata-sphinx-theme.js', 1) }}?digest=c5ced968eda925caa686" />
<script src="{{ pathto('_static/vendor/fontawesome/6.1.2/js/all.min.js', 1) }}?digest=c5ced968eda925caa686"></script>
{% endmacro %}

{% macro body_post() %}
<!-- Scripts loaded after <body> so the DOM is not blocked -->
<script src="{{ pathto('_static/scripts/bootstrap.js', 1) }}?digest=ac02cc09edc035673794"></script>
<script src="{{ pathto('_static/scripts/pydata-sphinx-theme.js', 1) }}?digest=ac02cc09edc035673794"></script>
<script src="{{ pathto('_static/scripts/bootstrap.js', 1) }}?digest=c5ced968eda925caa686"></script>
<script src="{{ pathto('_static/scripts/pydata-sphinx-theme.js', 1) }}?digest=c5ced968eda925caa686"></script>
{% endmacro %}
Loading

0 comments on commit 2d58ccd

Please sign in to comment.