1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 13:17:35 +00:00

Maps: Add FavoritesModel and remove hacky misusage of JSONArrayModel

This commit is contained in:
Bastiaan van der Plaat 2024-02-28 22:02:01 +01:00 committed by Sam Atkins
parent 29026ce965
commit bd86beb7e4
7 changed files with 224 additions and 74 deletions

View file

@ -27,6 +27,8 @@ public:
double latitude;
double longitude;
bool operator==(LatLng const& other) const = default;
double distance_to(LatLng const& other) const;
};