【发布时间】:2011-12-17 07:37:59
【问题描述】:
我们可以使用任何由 Google 提供支持的网络服务或类似的东西找到地球上的区域吗?就像我可以找到海拔和方向使用。
String url = "http://maps.googleapis.com/maps/api/elevation/xml?" +
"locations="+String.valueOf(latitude)+","
+String.valueOf(longitude)
+"&sensor=true";
和
Intent intent = new Intent(android.content.Intent.ACTION_VIEW,
Uri.parse("http://maps.google.com/maps?saddr="+one+","+two+"&daddr="+three+","+four+""));
startActivity(intent);
那么在寻找区域方面有什么帮助吗?
【问题讨论】:
标签: android google-maps area