About 400 results
Open links in new tab
  1. Folium — Folium 0.20.0 documentation - GitHub Pages

    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 …

  2. API reference — Folium 0.20.0 documentation - GitHub Pages

    Map tileset to use. Folium has built-in all tilesets available in the xyzservices package. For example, you can pass any of the following to the “tiles” keyword: ”OpenStreetMap” ”CartoDB …

  3. Getting started — Folium 0.20.0 documentation - GitHub Pages

    GeoJSON/TopoJSON overlays # Folium supports both GeoJSON and TopoJSON data in various formats, such as urls, file paths and dictionaries.

  4. PolyLine — Folium 0.20.0 documentation - GitHub Pages

    # Coordinates are 15 points on the great circle from Boston to San Francisco. coordinates = [ [42.3581, -71.0636], [42.82995815, -74.78991444], [43.17929819, -78.56603306], …

  5. User guide — Folium 0.20.0 documentation - GitHub Pages

    The user guide covers different parts of basic usage of Folium. Each page focuses on a single topic and outlines how it is implemented in Folium, with reproducible examples.

  6. Using colormaps — Folium 0.20.0 documentation

    Advanced guide Using colormaps Using colormaps# A few examples of how to use folium.colormapin choropleths. Let’s load a GeoJSON file, and try to choropleth it. [2]:

  7. LayerControl — Folium 0.20.0 documentation - GitHub Pages

    Common layer arguments # Every layer element in Folium has a couple common arguments: name: how the layer will be named in the layer control. overlay: True if the layer is an overlay, …

  8. Using GeoJson — Folium 0.20.0 documentation

    [6]: m = folium.Map([43, -100], zoom_start=4) folium.GeoJson(geo_json_data, zoom_on_click=True).add_to(m) m [6]: Make this Notebook Trusted to load map: File -> Trust …

  9. Quickstart — Folium 0.8.2 documentation - GitHub Pages

    folium enables passing any HTML object as a popup, including `bokeh <https://bokeh.pydata.org/en/latest/>`__ plots, but there is a built-in support for vincent and …

  10. Using Choropleth — Folium 0.20.0 documentation - GitHub Pages

    import pandas state_data = pandas.read_csv( "https://raw.githubusercontent.com/python-visualization/folium-example-data/main/us_unemployment_oct_2012.csv" ) m = …