确定android中特定纬度和经度的街景视图的可用性

时间:2013-01-31 05:19:20

标签: android google-maps android-maps google-street-view

在我的原生Android应用程序中,我正在为给定的纬度和经度加载街景视图。但如果街景视图不适用于该特定位置,则只显示灰色屏幕。地图应用程序可以做到这一点,但我似乎找不到使用android api,maps api或任何意图uri的方法。

以下是我用来显示街景的代码,它运行正常。

    String uriString = "google.streetview:cbll="+ latitude+","+longitude+"&cbp=1,0,,1,-5.27&mz=21";
    Uri uri = Uri.parse(uriString);
    Intent streetViewIntent = new Intent (Intent.ACTION_VIEW, uri);
   startActivity(streetViewIntent);

有没有人对使用特定纬度和长坐标确定街景的可用性有任何想法?

提前致谢。

0 个答案:

没有答案