#leptos #leaflet #component #draw #map #kapta

leptos_kapta

Kapta ~ Inspired by leaflet. Draw map with wasm

3 releases

0.0.4 Nov 7, 2023
0.0.3 Oct 27, 2023
0.0.2 Oct 26, 2023

#1121 in WebAssembly

Download history 2/week @ 2024-02-19 24/week @ 2024-02-26 52/week @ 2024-04-01

52 downloads per month

MIT license

48KB
1K SLoC

Kapta

Inspired by leaflet

Examples and Usage

Integrate leptos

Cargo.toml

kapta = {version = "0.0.2"}
leptos_kapta = {version = "0.0.2"}
leptos = {version = "0.5"}

main.rs

use leptos::*;
use leptos_kapta::{Kapta, KaptaCoord};

fn main() {    
    mount_to_body(|| leptos::view! { <App/> })
}

#[component]
pub fn App() -> impl IntoView {
    let center: KaptaCoord = KaptaCoord::new(106.645, 10.788);
    view! {
        <div class="mx-auto">
            <h1 class="text-center m-8 text-2xl ">Example with leptos</h1>
            <div class="flex justify-center">
                <Kapta zoom=3 width=900 height=700 center=center/>
            </div>
        </div>
    }
}

Result

Leptos Example

Currently the library is in the development stage

Dependencies

~23–40MB
~608K SLoC