Welcome to mirror list, hosted at ThFree Co, Russian Federation.

latlon_match.hpp « search - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d9a688259f79a513579efafea686096397523bb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once
#include "../base/base.hpp"
#include "../std/string.hpp"

namespace search
{

// Check if query can be represented as '(lat, lon)'.
bool MatchLatLon(string const & query, double & lat, double & lon,
                 double & precisionLat, double & precisionLon);

}  // namespace search