summaryrefslogtreecommitdiff
path: root/platform/android/src/snapshotter/map_snapshotter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'platform/android/src/snapshotter/map_snapshotter.cpp')
-rw-r--r--platform/android/src/snapshotter/map_snapshotter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/android/src/snapshotter/map_snapshotter.cpp b/platform/android/src/snapshotter/map_snapshotter.cpp
index a5f44a1d4c..3da5245f42 100644
--- a/platform/android/src/snapshotter/map_snapshotter.cpp
+++ b/platform/android/src/snapshotter/map_snapshotter.cpp
@@ -47,7 +47,7 @@ MapSnapshotter::MapSnapshotter(jni::JNIEnv& _env,
optional<mbgl::LatLngBounds> bounds;
if (region) {
- bounds = LatLngBounds::getLatLngBounds(_env, region);
+ bounds = LatLngBounds::getLatLngUnwrappedBounds(_env, region);
}
std::pair<bool, std::string> style;
@@ -130,7 +130,7 @@ void MapSnapshotter::setCameraPosition(JNIEnv& env, const jni::Object<CameraPosi
}
void MapSnapshotter::setRegion(JNIEnv& env, const jni::Object<LatLngBounds>& region) {
- snapshotter->setRegion(LatLngBounds::getLatLngBounds(env, region));
+ snapshotter->setRegion(LatLngBounds::getLatLngUnwrappedBounds(env, region));
}