Files
tantivy/src/spatial/point.rs
2025-12-03 17:05:27 +01:00

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,
}