GET Map?Latitude={Latitude}&Longitude={Longitude}&Thumbnail={Thumbnail}&Width={Width}&Height={Height}&Zoom={Zoom}&APIIdentifier={APIIdentifier}&User={User}

The Map service returns a PNG Image of a Map based on the supplied parameters

Request Information

Parameters

NameDescriptionAdditional information
Latitude
Latitude coordinates of the location. Example: 33.8465732 (Required)

Define this parameter in the request URI.

Longitude
Longitude coordinates of the location. Example: -84.3562778 (Required)

Define this parameter in the request URI.

Thumbnail
When set to ‘true’ the image will be set to Thumbnail values. Example: true (Optional)

Define this parameter in the request URI.

Width
Width of Map Image. Example: 200 (Optional)

Define this parameter in the request URI.

Height
Height of Map Image. Example: 100  (Optional)

Define this parameter in the request URI.

Zoom
Zoom level of Map Image. Example: 10  (Optional)

Define this parameter in the request URI.

APIIdentifier
An identifier assigned to MGAs by RSUI. Example: 5a6c7790-83bf-4b4c-88e1-7067413d3390 (Required)

Define this parameter in the request URI.

User
User Name that matches with the APIIdentifier. Example: John Smith (Required)

Define this parameter in the request URI.

Response Information

PNG Image of Map. (Error messages will be in the ApiMessages field)

Response body formats

application/json, text/json

Sample:
{
  "apiMessages": [
    "User Name is required"
  ]
}

text/html

Sample:
{"apiMessages":["User Name is required"]}

application/xml, text/xml

Sample:
<BaseResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <APIMessages>
    <string>User Name is required</string>
  </APIMessages>
</BaseResponse>

text/javascript, application/javascript, application/json-p

Sample:
({"apiMessages":["User Name is required"]});