earthwyrm 0.13.0

Vector tile map widget for WebAssembly
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// lib.rs
//
// Copyright (c) 2026  Douglas Lau
//
#![forbid(unsafe_code)]

mod error;
mod fetch;
mod map;
mod state;
mod tile;
mod util;

pub use map::MapPane;