如何在Android地图上显示经度和海拔高度?

时间:2014-09-27 09:45:24

标签: java android

我有一个地方坐标,我的意思是海拔和经度,我想在Android应用程序中使用谷歌地图显示这个地方,所以我如何使用这个高度和经度传递一个功能并在应用程序中显示该位置,我不需要显示当前的位置,我有以前的经度和高度,我在我的应用程序中将主题保存为字符串,是否有任何功能或布局在应用程序中显示这个坐标?或者我必须使用一些不同的方法在地图上显示这个地方?

2 个答案:

答案 0 :(得分:0)

private GoogleMap mMap;
mMap = ((MapFragment) getFragmentManager().findFragmentById(R.id.map)).getMap();
mMap.addMarker(new MarkerOptions()
        .position(new LatLng(10, 10))
        .title("Hello world"));

答案 1 :(得分:0)

你可以尝试:

String urlAddress = "http://maps.google.com/maps?q="+ lattitude string  +"," + longitude_string +"("+ "Hello location" + ")&iwloc=A&hl=es";     
                    Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(urlAddress));
                    startActivity(intent);

这将使用您提供的任何坐标打开谷歌地图。