我在osmdroid(3.05)中使用fromPixels()函数,如下所示:
public boolean onScroll(ScrollEvent e) {
//get the scroll's destination
GeoPoint g = (GeoPoint) e.getSource().getProjection().fromPixels(e.getX(), e.getY());
Toast.makeText(e.getSource().getContext(), "in e6: " +
g.getLongitudeE6() + " " + g.getLatitudeE6() + " in deg's" +
convertToDecimalDegrees(g.getLongitudeE6())
+ " " + convertToDecimalDegrees(g.getLatitudeE6()), Toast.LENGTH_LONG).show();}
我正在滚动地图-0.0029109附近的地方51.9933734但在吐司中我得到了:
-0.9613029999999999 76.60554499999999所以看起来lat是关闭的(转换为十进制)
度是好的 - 我只乘以1E-6)
我使用的功能不正确吗?
根据我的阅读,似乎我的用法很好,我也读到曾经存在问题
该功能,但现在应该修复
提前致谢!
欧米
答案 0 :(得分:0)
我知道这个帖子有点陈旧但是这个问题的答案可以在http://code.google.com/p/osmdroid/issues/detail?id=209找到 要点是设置地图的最大范围并将滚动限制到该范围。 以下是上述问题的摘要(将以下代码添加到MapView.java)
protected Rect mScrollableAreaLimit = null;
public void setScrollableAreaLimit(BoundingBoxE6 boundingBox) {
final int worldSize_2 = TileSystem.MapSize(MapViewConstants.MAXIMUM_ZOOMLEVEL) / 2;
// Clear scrollable area limit if null passed.
if (boundingBox == null) {
mScrollableAreaLimit = null;
return;
}
// Get NW/upper-left
final Point upperLeft = TileSystem.LatLongToPixelXY(boundingBox.getLatNorthE6() / 1E6,
boundingBox.getLonWestE6() / 1E6, MapViewConstants.MAXIMUM_ZOOMLEVEL, null);
upperLeft.offset(-worldSize_2, -worldSize_2);
// Get SE/lower-right
final Point lowerRight = TileSystem.LatLongToPixelXY(boundingBox.getLatSouthE6() / 1E6,
boundingBox.getLonEastE6() / 1E6, MapViewConstants.MAXIMUM_ZOOMLEVEL, null);
lowerRight.offset(-worldSize_2, -worldSize_2);
mScrollableAreaLimit = new Rect(upperLeft.x, upperLeft.y, lowerRight.x, lowerRight.y);
}
现在,您可以在创建地图视图时调用setScrollableAreaLimit方法,也可以使用BoundingBoxE6参数展开构造函数。
希望这有帮助。
除此之外,还需要对双击错误进行更正http://code.google.com/p/osmdroid/issues/detail?id=209#c23
@Override
public void computeScroll() {
if (mScroller.computeScrollOffset()) {
if (mScroller.isFinished()) {
// This will facilitate snapping-to any Snappable points.
setZoomLevel(mZoomLevel);
} else {
/* correction for double tap */
int targetZoomLevel = getZoomLevel();
if (targetZoomLevel == mZoomLevel)
scrollTo(mScroller.getCurrX(), mScroller.getCurrY());
}
postInvalidate(); // Keep on drawing until the animation has
// finished.
}
}