1
    how to integrate mixare ar sdk into our own apps ,my apps using google places api and getting nearby places according to location type abd how to pass google places api web service to mixare sdk ..

有没有其他方法可以使用 mixare ar sdk 到达附近的地方

thanks
4

2 回答 2

4

您还可以尝试其他增强现实框架,例如BeyondAR。这是 Apache v2 许可证 :)

于 2013-08-04T07:48:05.150 回答
3

Mixare 支持集成您自己的数据,如本网页所述:显示您自己的数据

支持的格式是 JSON。Google Places API 也支持 JSON,但不使用与 Mixare 完全相同的搜索结果语法(例如附近的 POI)。

所以你可以做什么:

  • 解决方案 1:使用您现有的代码通过 Google API 独立检索您的 POI,重新格式化 JSON Google Places 结果以与 JSON Mixare 格式兼容,并通过一些函数调用添加此处描述的内容。i.setDataAndType(Uri.parse("content:// ")

  • 解决方案 2:使用来自 Google Places API 的派生数据处理器类处理请求扩展 Mixare。请参阅此处的源代码,了解 Mixare 如何使用专门的数据处理器类检索 Twitter 或 Wikipedia JSON 格式的数据。

于 2013-07-19T13:07:51.577 回答