android: rename MapView.getMap()

This commit is contained in:
Hannes Janetzek
2014-03-22 20:24:01 +01:00
parent af823f74c7
commit c11a0d698b
4 changed files with 7 additions and 6 deletions

View File

@@ -124,10 +124,7 @@ public class MapView extends RelativeLayout {
return mMap.handleGesture(Gesture.DOUBLE_TAP, mMotionEvent.wrap(e));
}
});
}
public Map getMap() {
return mMap;
}
public void onStop() {
@@ -167,4 +164,8 @@ public class MapView extends RelativeLayout {
if (mWidth > 0 && mHeight > 0)
mMap.viewport().setScreenSize(width, height);
}
public Map map() {
return mMap;
}
}