Compares coordinates for equality.
@override bool operator ==(Object other) { if (other is LatLon) { return this.lat == other.lat && this.lon == other.lon; } else { return false; } }