0

我正在尝试将应用程序googlemap 2.2osmdroid 3.0.8. 我在 MapView 中遇到以下代码:

Projection proj = getProjection();
GeoPoint topLeft = proj.fromPixels(0, 0);
GeoPoint bottomRight = proj.fromPixels(getWidth()-1, getHeight()-1);

使用 osmdroid,topLeft 总是在北极。

在 OSM 中是否有不同的方法来处理它?

4

1 回答 1

1

在 OsmDroid 中,您使用 mapView.getScreenRect 来查找屏幕的左上角。

于 2012-10-28T15:46:09.183 回答