2015年4月22日 星期三

【Android】啟動 Google Map-Intent 特定的位置,縮放級別和標記



double latitude = 24.772018;
double longitude = 121.002129;
String label = "My Label";
String uriBegin = "geo:" + latitude + "," + longitude;
String query = latitude + "," + longitude + "(" + label + ")";
String encodedQuery = Uri.encode(query);
String uriString = uriBegin + "?q=" + encodedQuery + "&z=16";
Uri uri = Uri.parse(uriString);
Intent intent = new Intent(android.content.Intent.ACTION_VIEW, uri);
startActivity(intent);

沒有留言:

張貼留言