Documentation
KML support for Rust with a focus on conversion to geo-types. Currently only partial read support is implemented.
geo-types
```rust use kml::Kml;
let kml_str = r#" 1 -1,2,0 -1.5,3,0 -1.5,2,0 -1,2,0 "#;
let kml: Kml = kml_str.parse().unwrap(); ```