kml 0.0.2

KML support for Rust
docs.rs failed to build kml-0.0.2
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: kml-0.8.5

kml

crates.io Build status

Documentation

KML support for Rust with a focus on conversion to geo-types. Currently only partial read support is implemented.

Examples

use kml::Kml;

let kml_str = r#"
<Polygon>
  <outerBoundaryIs>
    <LinearRing>
    <tessellate>1</tessellate>
    <coordinates>
        -1,2,0
        -1.5,3,0
        -1.5,2,0
        -1,2,0
    </coordinates>
    </LinearRing>
  </outerBoundaryIs>
</Polygon>
"#;

let kml: Kml = kml_str.parse().unwrap();