dioxus-leaflet 0.3.0

A general-purpose Leaflet map component for Dioxus applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use std::path::PathBuf;

use dioxus_use_js::BunBuild;

fn main() {
    BunBuild::builder()
        .src_files(vec![PathBuf::from("js_utils/src/dioxus_leaflet.ts")])
        .output_dir(PathBuf::from("assets"))
        .skip_if_no_bun(true)
        .build()
        .run();
}