21 breaking releases

0.22.0 Apr 13, 2024
0.20.0 Mar 16, 2024
0.15.0 Dec 25, 2023
0.13.0 Nov 25, 2023
0.6.0 Jul 18, 2023

#45 in Geospatial

Download history 16/week @ 2024-01-11 3/week @ 2024-01-18 7/week @ 2024-02-08 2/week @ 2024-02-15 154/week @ 2024-02-22 50/week @ 2024-02-29 29/week @ 2024-03-07 196/week @ 2024-03-14 15/week @ 2024-03-21 21/week @ 2024-03-28 131/week @ 2024-04-04 181/week @ 2024-04-11 103/week @ 2024-04-18

436 downloads per month

MIT license

71KB
1.5K SLoC

Walkers, a map widget for Rust

crates.io

Walkers is a slippy maps widget for egui, similar to very popular Leaflet, but written in Rust. It compiles to native applications as well as WASM. See the online demo here.

Screenshot

It supports OpenStreetMap, mapbox, and compatible tile servers.

Before deploying your application, please get yourself familiar with the OpenStreetMap usage policy, and consider donating the OpenStreetMap Foundation.

Quick start

Walkers has three main objects. Tiles downloads images from a tile map provider such as OpenStreetMap and stores them in a cache, MapMemory keeps track of the widget's state and Map is the widget itself.

use walkers::{Tiles, Map, MapMemory, Position, sources::OpenStreetMap};
use egui::{Context, CentralPanel};
use eframe::{App, Frame};

struct MyApp {
    tiles: Tiles,
    map_memory: MapMemory,
}

impl MyApp {
    fn new(egui_ctx: Context) -> Self {
        Self {
            tiles: Tiles::new(OpenStreetMap, egui_ctx),
            map_memory: MapMemory::default(),
        }
    }
}

impl App for MyApp {
    fn update(&mut self, ctx: &Context, _frame: &mut Frame) {
        CentralPanel::default().show(ctx, |ui| {
            ui.add(Map::new(
                Some(&mut self.tiles),
                &mut self.map_memory,
                Position::from_lon_lat(17.03664, 51.09916)
            ));
        });
    }
}

You can see a more complete example here.

Running demos

Walkers suports numerous build options, such as Android and WASM. They all share a common library - demo, but require a different build workflow, not necessarily compatible with Cargo alone.

Native

To enable mapbox layers, you need to define MAPBOX_ACCESS_TOKEN environment variable before building. You can obtain one, by creating a mapbox account.

cd demo_native
cargo run

Web / WASM

cd demo_web
trunk serve --release

Android

You need to have Android SDK and cargo-ndk installed.

cd demo_android
make run-on-device

Dependencies

~25–38MB
~502K SLoC