Merge pull request #7402 from osmandapp/basemap_fix

query fix
This commit is contained in:
Denis Kolomiets 2019-08-09 16:57:38 +03:00 committed by GitHub
commit 3dd6875ea5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -315,7 +315,7 @@ public class OsmandRegions {
}
public List<BinaryMapDataObject> query(int lx, int rx, int ty, int by) throws IOException {
return queryBboxNoInit(lx, rx, ty, by, true);
return query(lx, rx, ty, by, true);
}
public List<BinaryMapDataObject> query(int lx, int rx, int ty, int by, boolean checkCenter) throws IOException {