我使用onScrollChanged(int pL, int pT, int pOldl, int pOldt)
來限制MapView的滾動。 如何將pL和pT轉換爲GeoPoint?如何轉換ScreenCoordinates至GeoPoints
謝謝。
我使用onScrollChanged(int pL, int pT, int pOldl, int pOldt)
來限制MapView的滾動。 如何將pL和pT轉換爲GeoPoint?如何轉換ScreenCoordinates至GeoPoints
謝謝。
呼叫getProjection()
您MapView
,並使用所產生的Projection
對象fromPixels()
轉換爲您GeoPoint
。
當我嘗試從pL和pT轉換時,我得到錯誤的GeoPoints值:GeoPoint gp =(GeoPoint)getProjection()。fromPixelels(pL,pT); – user1206529 2012-03-01 15:51:22
你可以簡單的使用方法mapView.setScrollableAreaLimit(BoundingBoxE6)
設置滾動
看看這個答案可以幫助:http://stackoverflow.com/questions/5701824/how-to-convert-coordinates-to-geopoint-format – jlemos 2012-03-01 11:17:40
我看到那篇文章。我需要轉換不同的值(int值),例如(101332,-98790,101388,-98590)謝謝。 – user1206529 2012-03-01 12:31:15