Changes from Version 1 of zooomr.photos.geo.setLocation

Show
Ignore:
Author:
bluemonki (IP: 78.86.133.53)
Timestamp:
05/10/08 22:56:15 (2 years ago)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • zooomr.photos.geo.setLocation

    v0 v1  
     1= zooomr.photos.geo.setLocation = 
     2 
     3Sets the geo data (latitude and longitude and, optionally, the accuracy level) for a photo.  
     4 
     5=== Authentication === 
     6 
     7This method requires authentication with 'write' permission. 
     8 
     9Note: This method requires an HTTP POST request. 
     10 
     11=== Arguments === 
     12 
     13api_key (Required) 
     14    Your API application key. 
     15photo_id (Required) 
     16    The id of the photo to set location data for. 
     17lat (Required) 
     18    The latitude whose valid range is -90 to 90. Anything more than 6 decimal places will be truncated. 
     19lon (Required) 
     20    The longitude whose valid range is -180 to 180. Anything more than 6 decimal places will be truncated. 
     21accuracy (Optional)  
     22    Recorded accuracy level of the location information. World level is 1, Country is ~3, Region ~6, City ~11, Street ~16. Current range is 1-16. Defaults to 16 if not specified. 
     23 
     24=== Example Response === 
     25{{{ 
     26 {"stat": "ok"} 
     27}}}