【发布时间】:2012-01-14 03:49:10
【问题描述】:
我将 OsmDroid 用于我的 Android 应用程序。我正在设置一个 IGeoPoint 如下
IGeoPoint point2 = new IGeoPoint() {
public int getLongitudeE6() {
return 51475022;
}
public int getLatitudeE6() {
return -300322;
}
};
mapController.animateTo(point2);
这把我带到了深蓝色的大海。而当我使用 google.mapview 并按以下方式设置地理点时
myMapController.animateTo(new GeoPoint((int) (51.475022 * 1E6),
(int) (-0.300322 * 1E6)));
它带我去我想去的地方
osmdroid 怎么了?
【问题讨论】:
标签: android dictionary geolocation osmdroid