1

こんにちは、現在の場所と目的地の場所でGoogleマップの意図を開始するボタンであるボタンを作りたいと思いました

Google マップで現在地と目的地の経度と緯度を自動的に検出する方法を教えてください。そのロンギとラットをどこに置く?

私はその地図が直接目的地への方向を描くことを望みます

     final Intent intent = new Intent(Intent.ACTION_VIEW,
Uri.parse("http://maps.google.com/maps?" 
+ "saddr="+ current_lat+","+current_longi + "&daddr="+dest_address ));

intent.setClassName("com.google.android.apps.maps","com.google.android.maps.MapsActivity");

startActivity(intent); 

alr はこのコードを試しましたが、動作しませんでした

4

3 に答える 3

0
Intent intent = new Intent(android.content.Intent.ACTION_VIEW, 
Uri.parse("http://maps.google.com/maps?saddr=srcLatitude,srcLongitude&daddr=destLatitude,destLongitude"));
startActivity(intent);


// srcLongitude/Latitude = current Location`s longitude/latitude

// destLongitude/Latitude = Destination Location`s longitude/latitude
于 2014-07-17T10:19:57.087 に答える