I'm using this code:
Intent intent = new Intent(
android.content.Intent.ACTION_VIEW,
Uri.parse("geo:0,0?q=14.56643,121.036138 (sample)"));
startActivity(intent);
Is it possible to load 2 locations or more in the Uri.parse()
?
I'm using this code:
Intent intent = new Intent(
android.content.Intent.ACTION_VIEW,
Uri.parse("geo:0,0?q=14.56643,121.036138 (sample)"));
startActivity(intent);
Is it possible to load 2 locations or more in the Uri.parse()
?
不,这是不可能的。此外,geo:
方案的规范正在制定中。
您可以在此处找到带有示例的简要说明:http: //developer.android.com/guide/appendix/g-app-intents.html
规范草案在这里:https ://datatracker.ietf.org/doc/html/draft-mayrhofer-geo-uri-00 ,它目前不允许多个位置。