macro_rules! coord {
($lat:expr ; $lon:expr) => { ... };
($lat:expr ; $lon:expr ; $alt:expr) => { ... };
}Expand description
Construct a Coordinate or CoordinateWithElevation from
already-validated components. See the not(feature = "elevation") variant
for additional documentation and examples.