3 releases
0.0.4 | Nov 7, 2023 |
---|---|
0.0.3 | Oct 27, 2023 |
0.0.2 | Oct 26, 2023 |
#1280 in WebAssembly
28 downloads per month
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
Currently the library is in the development stage
Dependencies
~23–37MB
~591K SLoC