Display interactive land cover map
Display interactive empathetic dialogues map
Search for movie/show reviews
Display a customizable splash screen with theme options
Demo for MiniCPM-o 2.6 to answer questions about images
a tiny vision language model
Display a loading spinner while preparing a space
Transcribe manga chapters with character names
Generate insights from charts using text prompts
Ask questions about an image and get answers
Answer questions about documents and images
Ask questions about text or images
Select and visualize language family trees
Streamlit Maplibre is a Streamlit component designed to display interactive land cover maps. It allows users to visualize and analyze geographical data in a user-friendly and intuitive manner. The tool is particularly useful for applications that require visual question answering (Visual QA), enabling users to interact with maps to gain insights or answer questions about land cover and usage.
pip install streamlit-maplibre in your terminal.import streamlit_maplibre to your Streamlit script.with streamlit_maplibre() as map_: context manager.map_.add_marker() or map_.add_layer() to customize the map.streamlit run your_script.py to view the map in your Streamlit app.1. What basemaps are available in Streamlit Maplibre?
Streamlit Maplibre supports multiple basemaps, including OpenStreetMap, MapLibre OSM, Stamen Ton, and CartoDB Positron.
2. Can I use real-time data with Streamlit Maplibre?
Yes, Streamlit Maplibre allows you to visualize real-time land cover data by integrating with external data sources or APIs.
3. Is Streamlit Maplibre compatible with all Streamlit versions?
Streamlit Maplibre is designed to work with Streamlit version 1.12.0 and above. Ensure you are using a compatible version for optimal performance.