29 lines
694 B
C++
29 lines
694 B
C++
#ifndef OSRM_UTIL_TO_OSM_LINK_HPP
|
|
#define OSRM_UTIL_TO_OSM_LINK_HPP
|
|
|
|
#include "util/coordinate.hpp"
|
|
|
|
#include <iomanip>
|
|
#include <string>
|
|
|
|
namespace osrm::util
|
|
{
|
|
inline std::string toOSMLink(const util::FloatCoordinate &c)
|
|
{
|
|
std::stringstream link;
|
|
link << "http://www.openstreetmap.org/?zoom=18&mlat=" << std::setprecision(10) << c.lat
|
|
<< "&mlon=" << c.lon;
|
|
return link.str();
|
|
}
|
|
|
|
inline std::string toOSMLink(const util::Coordinate &c)
|
|
{
|
|
std::stringstream link;
|
|
link << "http://www.openstreetmap.org/?zoom=18&mlat=" << std::setprecision(10)
|
|
<< toFloating(c.lat) << "&mlon=" << toFloating(c.lon);
|
|
return link.str();
|
|
}
|
|
} // namespace osrm::util
|
|
|
|
#endif
|