我正在尝试将应用程序googlemap 2.2
从osmdroid 3.0.8
. 我在 MapView 中遇到以下代码:
Projection proj = getProjection();
GeoPoint topLeft = proj.fromPixels(0, 0);
GeoPoint bottomRight = proj.fromPixels(getWidth()-1, getHeight()-1);
使用 osmdroid,topLeft 总是在北极。
在 OSM 中是否有不同的方法来处理它?