open google maps to bus directions

后端 未结 2 2018
春和景丽
春和景丽 2020-12-15 11:01

I realise that you can open the google maps app ready for directions by doing something like this:

NSString* urlString = @\"http://maps.google.com/maps?saddr         


        
2条回答
  •  渐次进展
    2020-12-15 11:33

    String url = "http://maps.google.com/maps?f=d&daddr="+latitude+","+longitude+"&dirflg=r";
    Intent intent = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse(url)); 
    intent.setClassName("com.google.android.apps.maps", "com.google.android.maps.MapsActivity");
    startActivity(intent);   
    

    dirflg=r is for public transport.

提交回复
热议问题