refactor: Viewport.getViewBox() -> getBBox()

This commit is contained in:
Hannes Janetzek 2014-02-08 18:13:40 +01:00
parent c64eb9aa88
commit 35566a2334
3 changed files with 5 additions and 5 deletions

@ -1 +1 @@
Subproject commit 130efd06be3efba0d99322cfdb007bcac08922b6
Subproject commit 79fa132039562f0e71a62758d2b16fd188e30e46

View File

@ -169,7 +169,7 @@ public class ItemizedLayer<Item extends MarkerItem> extends MarkerLayer<Item>
int eventY = (int) event.getY() - mMap.getHeight() / 2;
Viewport mapPosition = mMap.viewport();
BoundingBox bbox = mapPosition.getViewBox();
BoundingBox bbox = mapPosition.getBBox();
int nearest = -1;

View File

@ -228,8 +228,8 @@ public class Viewport {
*
* @return BoundingBox containing view
*/
public synchronized BoundingBox getViewBox() {
getViewBox(mMapBBox);
public synchronized BoundingBox getBBox() {
getBBox(mMapBBox);
// scale map-pixel coordinates at current scale to
// absolute coordinates and apply mercator projection.
@ -247,7 +247,7 @@ public class Viewport {
* the visible part of the map. Sets box to map coordinates:
* minX,minY,maxY,maxY
*/
public synchronized void getViewBox(Box box) {
public synchronized void getBBox(Box box) {
float[] coords = mViewCoords;
getMapExtents(coords, 0);