我有一个应用程序根据定义的边界在 GoogleMaps 中随机生成位置。因此,我首先生成一个随机 LatLng,然后验证该点是否在我的边界内。如果是,它是有效的。
Builder builder = new LatLngBounds.Builder();
double antartica[] = {-62.5670958528642, -59.92767333984375, -62.584805850293485, -59.98260498046875, -62.61450963659083};
for (int i = 0; i < antartica.length; i++) {
builder.include(new LatLng(antartica[i],antartica[++i]));
}
pAntarctica = builder.build();
LatLng point = generateRandomPosition();
if(isWithinBoundaries(point))
return point;
else
return getValidPoint();
所以在此之后,我得到了有效的观点。我的问题是谷歌地图中的有效点在街景中不一定有效。
这个随机点可能位于地球上尚未在街景中映射的某个位置。我也需要它在那里有效。
我知道您可以使用此链接后的 JavaScript API v3 来完成此操作。
你会做这样的事情:
var latLng = new google.maps.LatLng(12.121221, 78.121212);
streetViewService.getPanoramaByLocation(latLng, STREETVIEW_MAX_DISTANCE, function (streetViewPanoramaData, status) {
if (status === google.maps.StreetViewStatus.OK) {
//ok
} else {
//no ok
}
});
但我希望仅使用 Android 来执行此操作。顺便说一句,我使用的是 Google Play Services API,而不是Google Maps v2 Android。
任何人都可以解释一下吗?
编辑: 按照ratana的建议,这是我目前所拥有的:
svpView.getStreetViewPanoramaAsync(new OnStreetViewPanoramaReadyCallback() {
@Override
public void onStreetViewPanoramaReady(final StreetViewPanorama panorama) {
for(final LatLng point : points) {
System.out.println(point.latitude + " " + point.longitude);
panorama.setPosition(point, 1000);
final CountDownLatch latch = new CountDownLatch(1);
mHandlerMaps.post(new Runnable() {
@Override
public void run() {
if (panorama.getLocation() != null) {
System.out.println("not null " + panorama.getLocation().position);
writeToFile(panorama.getLocation().position.toString());
l.add(point);
}
latch.countDown();
}
});
try {
latch.await(4, TimeUnit.SECONDS);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
System.out.println(l.toString());
}
});