This repository has been archived on 2025-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
organicmaps-tmp/search/latlon_match.hpp

9 lines
210 B
C++

#pragma once
#include <string>
namespace search
{
// Parses input query for most input coordinates cases.
bool MatchLatLonDegree(std::string const & query, double & lat, double & lon);
} // namespace search