GET Package/HeatMap?id={id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
HeatMapData| Name | Description | Type | Additional information |
|---|---|---|---|
| Latitude | decimal number |
None. |
|
| Longitude | decimal number |
None. |
|
| Locations | Collection of Collection of decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{
"Latitude": 1.1,
"Longitude": 2.1,
"Locations": [
[
1.1,
2.1
],
[
1.1,
2.1
]
]
}
application/xml, text/xml
Sample:
<Package.HeatMapData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AlpaslanKuryeMobilAPI.Models">
<Latitude>1.1</Latitude>
<Locations xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:ArrayOfdouble>
<d2p1:double>1.1</d2p1:double>
<d2p1:double>2.1</d2p1:double>
</d2p1:ArrayOfdouble>
<d2p1:ArrayOfdouble>
<d2p1:double>1.1</d2p1:double>
<d2p1:double>2.1</d2p1:double>
</d2p1:ArrayOfdouble>
</Locations>
<Longitude>2.1</Longitude>
</Package.HeatMapData>