- // 打开Google地图中国北京位置(北纬39.9,东经116.3)
- Uri uri = Uri.parse("geo:39.9,116.3");
- Intent intent = new Intent(Intent.ACTION_VIEW, uri);
- startActivity(intent);
- // 路径规划:从北京某地(北纬39.9,东经116.3)到上海某地(北纬31.2,东经121.4)
- Uri uri = Uri.parse("http://maps.google.com/maps?f=d&saddr=39.9 116.3&daddr=31.2 121.4");
- Intent intent = new Intent(Intent.ACTION_VIEW, uri);
- startActivity(intent);
复制代码 |
|