获取谷歌地图的lat和lng而不使用Android中的javascript

时间:2016-03-31 07:21:28

标签: android google-maps maps latitude-longitude

如何在不使用javascript的情况下在屏幕中心的谷歌地图上获取某个位置的lat和lng。 我一直试图找到这个答案很长一段时间。 反正有吗?

谢谢。

1 个答案:

答案 0 :(得分:2)

Point point = new Point();
point.set(x, y);
LatLng latLng = mMap.getProjection().fromScreenLocation(p);

您可以通过计算screenWidth / 2和screenHeight / 2

找到您的x和y