我想在 Android应用中使用 Google的路线规划等。 我知道IPhone开发人员可以使用这样的URL调用启动它:
[someUIApplication openURL:[NSURL URLWithString:@"http://maps.google.com/maps?q=London"]]
任何人都可以提供帮助吗?
答案 0 :(得分:1)
是的,只需使用url geo:纬度,经度来触发VIEW意图?z = zoom
有关Google应用内容的完整列表,您可以查看this
答案 1 :(得分:1)
Intent intent = new Intent(android.content.Intent.ACTION_VIEW,Uri.parse(“http://maps.google.com/maps?q=London”));
startActivity(意向);