2014-09-27 109 views
-2

我有一個地方座標,我的意思是海拔和經度,我想在Android應用程序中顯示谷歌地圖這個地方,所以我如何使用這個高度和經度來傳遞一個函數,並顯示在應用程序中的位置,我不需要顯示當前的地方,我有這個經度和海拔從前,我保存主題作爲一個字符串在我的應用程序,是否有任何功能或佈局顯示這個地方與應用程序中的座標?或者我必須使用一些不同的方法在地圖上顯示這些地方?如何在Android地圖上顯示經度和海拔高度?

+0

嘗試使用標記。 – 2014-09-27 09:46:59

+0

@HareshChhelana什麼是標記?我怎麼用這個? – zandkazem 2014-09-27 09:53:03

+0

檢查:https://developers.google.com/maps/documentation/android/marker – 2014-09-27 09:55:46

回答

0
private GoogleMap mMap; 
mMap = ((MapFragment) getFragmentManager().findFragmentById(R.id.map)).getMap(); 
mMap.addMarker(new MarkerOptions() 
     .position(new LatLng(10, 10)) 
     .title("Hello world")); 
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); 

這將打開谷歌地圖與任何座標你提供。

+0

我不想使用谷歌地圖 – zandkazem 2014-09-27 17:05:59

相關問題