summaryrefslogtreecommitdiff
path: root/src/mbgl/map/transform.cpp
diff options
context:
space:
mode:
authorBruno de Oliveira Abinader <bruno@mapbox.com>2018-11-23 15:26:10 +0200
committerBruno de Oliveira Abinader <bruno@mapbox.com>2018-11-27 21:38:36 +0200
commite8f7866e9e3328bb4d40da172fb5a549315fd486 (patch)
tree88d4ca1f9ecfab5d54cfa3a3e340fb8c04b99141 /src/mbgl/map/transform.cpp
parent9d1d4ecdb8bcbb10c8b1f3125ca2d78510856ce9 (diff)
downloadqtlocation-mapboxgl-e8f7866e9e3328bb4d40da172fb5a549315fd486.tar.gz
[core] Remove error-prone setlatLng overload
Diffstat (limited to 'src/mbgl/map/transform.cpp')
-rw-r--r--src/mbgl/map/transform.cpp11
1 files changed, 2 insertions, 9 deletions
diff --git a/src/mbgl/map/transform.cpp b/src/mbgl/map/transform.cpp
index 03a1e117f7..452cb19a09 100644
--- a/src/mbgl/map/transform.cpp
+++ b/src/mbgl/map/transform.cpp
@@ -323,22 +323,15 @@ void Transform::moveBy(const ScreenCoordinate& offset, const AnimationOptions& a
}
void Transform::setLatLng(const LatLng& latLng, const AnimationOptions& animation) {
- setLatLng(latLng, optional<ScreenCoordinate> {}, animation);
-}
-
-void Transform::setLatLng(const LatLng& latLng, const EdgeInsets& padding, const AnimationOptions& animation) {
CameraOptions camera;
camera.center = latLng;
- camera.padding = padding;
easeTo(camera, animation);
}
-void Transform::setLatLng(const LatLng& latLng, optional<ScreenCoordinate> anchor, const AnimationOptions& animation) {
+void Transform::setLatLng(const LatLng& latLng, const EdgeInsets& padding, const AnimationOptions& animation) {
CameraOptions camera;
camera.center = latLng;
- if (anchor) {
- camera.padding = EdgeInsets(anchor->y, anchor->x, state.size.height - anchor->y, state.size.width - anchor->x);
- }
+ camera.padding = padding;
easeTo(camera, animation);
}