refactor: Viewport.getViewBox() -> getBBox()
This commit is contained in:
parent
c64eb9aa88
commit
35566a2334
@ -1 +1 @@
|
|||||||
Subproject commit 130efd06be3efba0d99322cfdb007bcac08922b6
|
Subproject commit 79fa132039562f0e71a62758d2b16fd188e30e46
|
@ -169,7 +169,7 @@ public class ItemizedLayer<Item extends MarkerItem> extends MarkerLayer<Item>
|
|||||||
int eventY = (int) event.getY() - mMap.getHeight() / 2;
|
int eventY = (int) event.getY() - mMap.getHeight() / 2;
|
||||||
Viewport mapPosition = mMap.viewport();
|
Viewport mapPosition = mMap.viewport();
|
||||||
|
|
||||||
BoundingBox bbox = mapPosition.getViewBox();
|
BoundingBox bbox = mapPosition.getBBox();
|
||||||
|
|
||||||
int nearest = -1;
|
int nearest = -1;
|
||||||
|
|
||||||
|
@ -228,8 +228,8 @@ public class Viewport {
|
|||||||
*
|
*
|
||||||
* @return BoundingBox containing view
|
* @return BoundingBox containing view
|
||||||
*/
|
*/
|
||||||
public synchronized BoundingBox getViewBox() {
|
public synchronized BoundingBox getBBox() {
|
||||||
getViewBox(mMapBBox);
|
getBBox(mMapBBox);
|
||||||
|
|
||||||
// scale map-pixel coordinates at current scale to
|
// scale map-pixel coordinates at current scale to
|
||||||
// absolute coordinates and apply mercator projection.
|
// absolute coordinates and apply mercator projection.
|
||||||
@ -247,7 +247,7 @@ public class Viewport {
|
|||||||
* the visible part of the map. Sets box to map coordinates:
|
* the visible part of the map. Sets box to map coordinates:
|
||||||
* minX,minY,maxY,maxY
|
* minX,minY,maxY,maxY
|
||||||
*/
|
*/
|
||||||
public synchronized void getViewBox(Box box) {
|
public synchronized void getBBox(Box box) {
|
||||||
float[] coords = mViewCoords;
|
float[] coords = mViewCoords;
|
||||||
getMapExtents(coords, 0);
|
getMapExtents(coords, 0);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user