Fix return value (MAPNIK_WEBMERCATOR_PROJ is not geographic SRS)

This commit is contained in:
Artem Pavlenko 2021-03-24 09:42:52 +00:00
parent 59aa5087fc
commit 3a302667a1

View file

@ -70,7 +70,7 @@ boost::optional<bool> is_known_geographic(std::string const& srs)
} }
else if (trimmed == MAPNIK_WEBMERCATOR_PROJ) else if (trimmed == MAPNIK_WEBMERCATOR_PROJ)
{ {
return boost::optional<bool>(true); return boost::optional<bool>(false);
} }
return boost::optional<bool>(); return boost::optional<bool>();
} }