mirror of
https://github.com/quickwit-oss/tantivy.git
synced 2026-01-08 01:52:54 +00:00
9 lines
187 B
Rust
9 lines
187 B
Rust
/// A point in the geographical coordinate system.
|
|
#[derive(Debug, Clone, Copy, PartialEq)]
|
|
pub struct GeoPoint {
|
|
/// Longitude
|
|
pub lon: f64,
|
|
/// Latitude
|
|
pub lat: f64,
|
|
}
|