gpt4 book ai didi

android - 立交桥 API Android 示例?

转载 作者:太空狗 更新时间:2023-10-29 16:05:47 24 4
gpt4 key购买 nike

为了研究,我们必须开发一款基于位置的 Android 游戏。目前我们使用 OSMDroid 来显示 map 。玩家必须收集资源(如木头、石头等)。这些资源目前以硬编码的 long/lat 存储在我们的后端,并将通过 setMarker 添加到当前 map 上。为了在全局范围内提供这款游戏,我们希望根据“真实”世界动态设置资源。所以我们需要来自 OSM 的不同层(如森林、海洋、..)来自动设置我们的资源而不询问我们的后端。用谷歌搜索几个小时后,我发现 Overpass API 似乎可以帮助我实现此功能。但是我找不到任何在 Android 中使用 Overpass API 的教程。我尝试了一些东西,但我不明白......所以我需要你的帮助,请给我一个例子或解释如何实现这个:/

这是我当前的代码,但我不认为这是正确的..

URL url = new URL("http://overpass-api.de/api/interpreter");
HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection();
urlConnection.setRequestMethod("GET");
urlConnection.setDoOutput(true);
urlConnection.connect();
InputStream inputStream = urlConnection.getInputStream();
inputStream.close();

InputStream inputStream = urlConnection.getInputStream(); 将抛出以下异常:

W/System.err(3958): java.io.FileNotFoundException: http://overpass-api.de/api/interpreterW/System.err(3958):在 libcore.net.http.HttpURLConnectionImpl.getInputStream(HttpURLConnectionImpl.java:177)W/System.err(3958): 在 de.htw.berlin.games.based.location.gui.MapActivity$test.doInBackground(MapActivity.java:536)W/System.err(3958): 在 de.htw.berlin.games.based.location.gui.MapActivity$test.doInBackground(MapActivity.java:1)W/System.err(3958): 在 android.os.AsyncTask$2.call(AsyncTask.java:287)W/System.err(3958): 在 java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:305)W/System.err(3958): 在 java.util.concurrent.FutureTask.run(FutureTask.java:137)W/System.err(3958): 在 android.os.AsyncTask$SerialExecutor$1.run(AsyncTask.java:230)W/System.err(3958): 在 java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1076)W/System.err(3958): 在 java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:569)W/System.err(3958): 在 java.lang.Thread.run(Thread.java:856)

感谢所有有用的回复:)

最佳答案

你得到的这个异常被抛出是因为对 http://overpass-api.de/api/interpreter 的 HTTP GET 调用返回了 400 Bad Request 响应.

您要做的是向 http://overpass-api.de/api/interpreter 发送 POST 请求。 An example传递给此 API 的 form-data 是:

data='<?xml version="1.0" encoding="UTF-8"?><osm-script><!--
This is an example Overpass query.
Try it out by pressing the Run button above!
You can find more examples with the Load tool.
-->
<query type="node">
<has-kv k="amenity" v="drinking_water"/>
<bbox-query s="41.88659196260802" w="12.488558292388916" n="41.89248629819397" e="12.51119613647461"/><!--this is auto-completed with the
current map view coordinates.-->
</query>
<print/></osm-script>'

要了解 API 的工作方式,您应该使用浏览器检查在 example I pointed out 中单击 Run 时对 API 进行的 HTTP 查询。 .

编辑

你可以找到很多例子,比如 this one展示了如何在 Android 中使用 HTTP 发布数据。您必须在使用的值对容器中添加 data 作为 key 和 XML 查询字符串作为 value,例如:

List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(1);
nameValuePairs.add(new BasicNameValuePair("data", _The_XML_Query_String_));

坚持linked example剩下的,你会没事的。

关于android - 立交桥 API Android 示例?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15719398/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com