Page History
...
This API retrieves a JPEG image using the center point of a location.
If you do not have permissions to access imagery in the specified location you will get a white rectangle instead of the image.
Note: the API only support Web Mercator projection.
...
Parameter | Meaning | Example |
RC | Region code. Either us or au. Note: the region code for New Zealand is also au. | au |
NUMBER | Domain rotation number. Valid numbers are 0-3. | 0 |
center | Latitude and Longitude of the location on which to centre the image in the format<latitude,longitude> | 37.334849,-122.008946 |
size | Size of the image in pixels | 800x800 |
zoom | Image zoom (Web Mercator zoom) | 18 |
date | Date of the image, in the format YYYYMMDD | 20150314 |
httpauth | Whether the tile server should prompt for HTTP basic authentication. Set this to false (as we no longer support HTTP Basic authentication). | false |
apikey | API Key. See API Key Authentication. | A325BF1343... |
Example
...
This API retrieves a JPEG image of a location using a bounding box.
If you do not have permissions to access imagery in the specified location you will get a white rectangle instead of the image.
Note: the API only support Web Mercator projection.
URL Format
http://[RC][NUMBER].nearmap.com/staticmap?bbox=[BOUNDING BOX]&
zoom=[ZOOM]&date=[DATE]&httpauth=false&apikey=[YOUR API KEY]
...