How to get all images from the panorama by sending multiple latitude, longitude at a time.
I want to show the panorama images on my site and for the same I did the follwing
I am able to get images from the panorama by sending tag & lat lng for one location only as:
'http://www.panoramio.com/map/get_panoramas.php?set=public&tag=pune&from=0&to=20&size=medium&mapfilter=true'
it gives me 20 images for pune
tag
By using lat & lng I used the follwing URL to the Images:
'http://www.panoramio.com/map/get_panoramas.php?set=public&minx=' . (73.856743 - 0.045) . '&miny=' . (18.520430 - 0.045) . '&maxx=' . 73.856743 . '&maxy=' . 18.520430 . '&from=0&to=1&size=medium';
it gives me 20 images for pune
location which is having lat = 18.520430
and lng = 73.856743
Is there way to get the images by sending multiple
tags or lat lng i.e for multiple location at a time?