我是安卓新手。我用 a 制作了一个应用程序,MapView
我想设置它,当我运行我的应用程序时,它会显示一个具有定义缩放级别的定义位置(城镇)。知道怎么做吗?
问问题
450 次
1 回答
0
你可以按照这个:
MapController mc;
GeoPoint p;
mapView = (MapView) findViewById(R.id.mapView);
mc = mapView.getController();
String coordinates[] = {"1.352566007", "103.78921587"};// Change this value to your desire position.
double lat = Double.parseDouble(coordinates[0]);
double lng = Double.parseDouble(coordinates[1]);
p = new GeoPoint(
(int) (lat * 1E6),
(int) (lng * 1E6));
mc.animateTo(p); // set map center to your desire place
mc.setZoom(17); //set zoom level.
mapView.invalidate();
您可以使用此页面获取地点的经度/纬度
于 2013-01-30T01:46:08.223 回答