Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs: folium logo #1801

Merged
merged 8 commits into from
Sep 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
folium
======

.. image:: https://github.com/python-visualization/folium/blob/main/docs/_static/folium_logo.jpg
.. image:: https://github.com/python-visualization/folium/blob/main/docs/_static/folium_logo.png
:height: 100px


Python Data, Leaflet.js Maps
Expand Down
Binary file removed docs/_static/folium_logo.jpg
Binary file not shown.
Binary file added docs/_static/folium_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 5 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,21 +123,24 @@
"type": "fontawesome",
}
],
"logo": {
"text": "Folium",
},
}

# Add any paths that contain custom themes here, relative to this directory.
# html_theme_path = ["_themes"]

# The name for this set of Sphinx documents. If None, it defaults to
# "<project> v<release> documentation".
html_title = "Folium documentation"
# html_title = "Folium documentation"

# A shorter title for the navigation bar. Default is the same as html_title.
# html_short_title = None

# The name of an image file (relative to this directory) to place at the top
# of the sidebar.
# html_logo = None
html_logo = "_static/folium_logo.png"

# The name of an image file (within the static path) to use as favicon of the
# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
Expand Down
20 changes: 11 additions & 9 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,27 @@
Folium
######

.. image:: _static/folium_logo.jpg
.. image:: _static/folium_logo.png
:height: 100px

**Python data, leaflet.js maps**

``folium`` builds on the data wrangling strengths of the Python ecosystem and
the mapping strengths of the ``leaflet.js`` library.
Manipulate your data in Python,
then visualize it in on a Leaflet map via ``folium``.
Python data, leaflet.js maps
~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Folium builds on the data wrangling strengths of the Python ecosystem and the
mapping strengths of the `Leaflet.js <https://leafletjs.com>`_ library.
Manipulate your data in Python, then visualize it in a Leaflet map via Folium.

Concepts
========

``folium`` makes it easy to visualize data that's been manipulated in Python on an interactive leaflet map.
It enables both the binding of data to a map for ``choropleth`` visualizations
Folium makes it easy to visualize data that's been manipulated in Python on an interactive leaflet map.
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.
``folium`` supports both Image, Video, GeoJSON and TopoJSON overlays and has a
Folium supports both Image, Video, GeoJSON and TopoJSON overlays and has a
number of vector layers built-in.


Expand Down