我想将可变纬度经度传递到谷歌地图方向? 可以帮助我看到错误或有一个新的解决方案? 这是我的java代码:
public void onClickShowMap(View v) {
String latitude = ((TextView) findViewById(R.id.latitude)).getText().toString();
String longitude = ((TextView) findViewById(R.id.longitude)).getText().toString();
Intent intent = new Intent(android.content.Intent.ACTION_VIEW,
Uri.parse("http://maps.google.com/maps?f=d&daddr="+latitude+","+longitude));
startActivity(intent);
}
答案 0 :(得分:0)
使用此代码,
最终意图意图=新意图(Intent.ACTION_VIEW, Uri.parse(“http://maps.google.com/maps?”+“saddr =”+ lat +“,”+ lon +“& daddr =”+ lattitude +“,” +经度)); intent.setClassName( “com.google.android.apps.maps” “com.google.android.maps.MapsActivity”); ((Activity)this).startActivity(intent);