13 releases

0.4.1 Dec 9, 2023
0.4.0 Nov 20, 2023
0.3.4 Nov 17, 2023
0.3.2 Oct 30, 2022
0.1.0 Nov 27, 2017

#49 in Geospatial

Download history 105/week @ 2023-12-22 111/week @ 2023-12-29 110/week @ 2024-01-05 307/week @ 2024-01-12 268/week @ 2024-01-19 231/week @ 2024-01-26 159/week @ 2024-02-02 157/week @ 2024-02-09 119/week @ 2024-02-16 234/week @ 2024-02-23 137/week @ 2024-03-01 205/week @ 2024-03-08 259/week @ 2024-03-15 325/week @ 2024-03-22 416/week @ 2024-03-29 329/week @ 2024-04-05

1,350 downloads per month
Used in 6 crates

MIT/Apache

46KB
608 lines

tilejson

Build Status tilejson on crates.io API Docs

tilejson is a crate for serializing/deserializing the TileJSON format — an open standard for representing map metadata.

Examples

Reading

use tilejson::TileJSON;

fn main() {
    let tilejson_str = r#"{
        "tilejson": "3.0.0",
        "name": "compositing",
        "scheme": "tms",
        "tiles": [
            "http://localhost:8888/admin/1.0.0/world-light,broadband/{z}/{x}/{y}.png"
        ]
    }"#;

    // Parse JSON
    let mut tilejson: TileJSON = serde_json::from_str(&tilejson_str).unwrap();
    println!("{tilejson:?}");
   
    // Add missing default values per TileJSON specification
    tilejson.set_missing_defaults();
    println!("{tilejson:?}");
}

Writing

use tilejson::tilejson;

fn main() {
    let tilejson = tilejson! {
        "http://localhost:8888/admin/1.0.0/world-light,broadband/{z}/{x}/{y}.png".to_string(),
        name: "tileset name".to_string(),
        description: "some description".to_string(),
    };

    let serialized_tilejson = serde_json::to_string(&tilejson).unwrap();

    println!("{serialized_tilejson}");
}

Contributing

Contributions are welcome! Have a look at the issues, and open a pull request if you'd like to add an algorithm or some functionality.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~0.7–1.5MB
~34K SLoC