I'm generating street view static images like so:
If you visit that link you see an image that says, "Sorry, we have no imagery for this..."
Is there any way to detect this "sorry" state so that I can fall back to another image?
|
I'm generating street view static images like so: If you visit that link you see an image that says, "Sorry, we have no imagery for this..." Is there any way to detect this "sorry" state so that I can fall back to another image? |
|||
|
|
this situation is already build in in the 3.0 version due the boolean test status === streetviewStatus.Ok, here is a snippet from my situation solving
|
|||
|
|
|
One quick solution would be to load the image file using xmlrpc and check that its md5sum is You could go for image processing instead. Note that it's still not perfectly robust since Google could decide to change the looks of the image anytime. You'll have to decide whether it's worth it. Anyway, here is how I would do it using jQuery:
The reason I do not recommend testing directly for an RGB value is because JPEG decompression may have slightly different behaviours on different browsers. |
||||
|
|
|
You can use the getPanoramaByLocation function (see http://code.google.com/apis/maps/documentation/javascript/services.html#StreetViewService). try something like this:
|
|||
|
|