Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/198.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
如何将mixare增强现实sdk集成到我们自己的android应用程序中_Android_Augmented Reality - Fatal编程技术网

如何将mixare增强现实sdk集成到我们自己的android应用程序中

如何将mixare增强现实sdk集成到我们自己的android应用程序中,android,augmented-reality,Android,Augmented Reality,有没有其他方法可以使用MixarSDK到达附近的地方 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支持集成您自己的数据,如本网

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

    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支持集成您自己的数据,如本网页所述:

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

因此,您可以做什么:

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

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


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

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

因此,您可以做什么:

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

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


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

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

thanks