【发布时间】:2016-05-31 16:52:00
【问题描述】:
我在我的 Activity 中使用 StreetViewPanorama View。
最初我使用 StreetViewPanorama 设置位置。
streetViewPanorama.setPosition(new LatLng(25.1305784, 55.1170592));
但是在我尝试获取该位置的 Nearer PanoIds 之后,它总是返回 null 值以下是我编写的代码:
StreetViewPanoramaLocation location = streetViewPanorama.getLocation();
Log.d("test","LocaTion:"+location);
if (location != null && location.links != null) {
Log.d("test","size:"+location.links.length);
streetViewPanorama.setPosition(location.links[0].panoId);
}
请帮助我,在此先感谢。
【问题讨论】:
标签: android android-maps-v2 android-location