kml
KML support for Rust with a focus on conversion to geo-types primitives. Currently only partial read/write support is implemented.
Examples
use 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;