diff options
Diffstat (limited to 'src/mbgl')
-rw-r--r-- | src/mbgl/map/map.cpp | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/mbgl/map/map.cpp b/src/mbgl/map/map.cpp index afa3304316..c2844f87f2 100644 --- a/src/mbgl/map/map.cpp +++ b/src/mbgl/map/map.cpp @@ -17,7 +17,6 @@ #include <mbgl/storage/resource.hpp> #include <mbgl/storage/response.hpp> #include <mbgl/util/exception.hpp> -#include <mbgl/util/projection.hpp> #include <mbgl/util/math.hpp> #include <mbgl/util/exception.hpp> #include <mbgl/util/async_task.hpp> @@ -798,18 +797,6 @@ ViewportMode Map::getViewportMode() const { #pragma mark - Projection -double Map::getMetersPerPixelAtLatitude(double lat, double zoom) const { - return Projection::getMetersPerPixelAtLatitude(lat, zoom); -} - -ProjectedMeters Map::projectedMetersForLatLng(const LatLng& latLng) const { - return Projection::projectedMetersForLatLng(latLng); -} - -LatLng Map::latLngForProjectedMeters(const ProjectedMeters& projectedMeters) const { - return Projection::latLngForProjectedMeters(projectedMeters); -} - ScreenCoordinate Map::pixelForLatLng(const LatLng& latLng) const { // If the center and point longitudes are not in the same side of the // antimeridian, we unwrap the point longitude so it would be seen if |