Gallery ======= This gallery showcases maps generated by the scripts in the `examples/` directory. Simple Map ---------- A basic world map showing country polygons. .. image:: _static/simple.png :width: 600 :alt: Simple Map **Source:** `examples/simple.py` .. literalinclude:: ../../examples/simple.py :language: python Choropleth Map -------------- A thematic map where areas are shaded in proportion to a statistical variable. .. image:: _static/choropleth.png :width: 600 :alt: Choropleth Map **Source:** `examples/choropleth.py` .. literalinclude:: ../../examples/choropleth.py :language: python Bubble Map ---------- A map using proportional symbols (bubbles) to represent data. .. image:: _static/bubble.png :width: 600 :alt: Bubble Map **Source:** `examples/bubble.py` .. literalinclude:: ../../examples/bubble.py :language: python Lines and Routes ---------------- Drawing lines (e.g., flight routes) on a map. .. image:: _static/lines.png :width: 600 :alt: Lines Map **Source:** `examples/lines.py` .. literalinclude:: ../../examples/lines.py :language: python Tile Layers ----------- Using a tile basemap (e.g., OpenStreetMap, World Street Map). .. image:: _static/tiles.png :width: 600 :alt: Tiles Map **Source:** `examples/tiles.py` .. literalinclude:: ../../examples/tiles.py :language: python Labels ------ Adding text labels to map features. .. image:: _static/labels.png :width: 600 :alt: Labels Map **Source:** `examples/labels.py` .. literalinclude:: ../../examples/labels.py :language: python Visual Effects -------------- Applying effects like shadows to specific layers. .. image:: _static/choropleth_effect.png :width: 600 :alt: Effects Map **Source:** `examples/choropleth_effect.py` .. literalinclude:: ../../examples/choropleth_effect.py :language: python Layer Control ------------- An interactive map with controls to toggle layer visibility. .. image:: _static/layer_control_map.png :width: 600 :alt: Layer Control Map **Source:** `examples/layer_control.py` .. literalinclude:: ../../examples/layer_control.py :language: python Reactive Map ------------ A map configured for zooming and interaction. .. image:: _static/reactive_snapshot.png :width: 600 :alt: Reactive Map **Source:** `examples/reactive.py` .. literalinclude:: ../../examples/reactive.py :language: python Advanced Plots -------------- Examples of more complex plot types. **Typology Map** .. image:: _static/advanced_typo.png :width: 600 :alt: Typology Map **Proportional Symbols + Typology** .. image:: _static/advanced_proptypo.png :width: 600 :alt: PropTypo Map **Symbol Map (Picto)** .. image:: _static/advanced_symbol.png :width: 600 :alt: Symbol Map **Source:** `examples/advanced_plots.py` .. literalinclude:: ../../examples/advanced_plots.py :language: python Mushroom Map ------------ A map combining two half-circles (GDP and Population) to form mushroom symbols. .. image:: _static/mushroom.png :width: 600 :alt: Mushroom Map **Source:** `examples/mushroom.py` .. literalinclude:: ../../examples/mushroom.py :language: python Heatmap / Smooth ----------------- A density map using isobands to visualize population distribution. .. image:: _static/heatmap.png :width: 600 :alt: Heatmap Map **Source:** `examples/heatmap.py` .. literalinclude:: ../../examples/heatmap.py :language: python JSON Export ----------- Exporting the map configuration to JSON for use in other applications. **Source:** `examples/json_export.py` .. literalinclude:: ../../examples/json_export.py :language: python