Android Maps Coordinates

Viewed 61

I am getting json response from an Api. The response looks like this.

{
 "CarsList": [{
 "coordinate": {
 "latitude": 53.46036882190762,
 "longitude": 9.909716434648558
 },
 "heading": 344.19529122029735
 },
 {
 "coordinate": {
 "latitude": 53.668806556867445,
 "longitude": 10.019908942943804
 },
 "heading": 245.2005654202569
 },
 {
 "coordinate": {
 "latitude": 53.58500747958201,
 "longitude": 9.807045083858156
 },
 "heading": 71.63840043828377
 }
 ]
}

I need to create custom list items using the json Response data. I am using latitude and longitude to get the location. I am confused as to what the "heading" parameter represents. Please help me in figuring out the purpose of this "heading" parameter. Thanking in advance.

1 Answers
Related