DYNAMICTRAFFIC / Latitude And Longitude

Description

Returns the vehicle’s latitude and longitude.

Request

Method

GET

URL

https://open.youbiai.com/api/ic/if_dt_tflow_latitude_and_longitude

Request Body

access_token

String

required parameter for each developer to request

vid

String

a vehicle id

Response Body

vid

String

a vehicle id

status

String

Value: 0(Fail) or 1(Succeed).

position_direction_ananlysis

String

1: unblocked ;2: a bit crowded;3: jam;4: severe crowding

Sample Request
curl -G -X GET \
https://open.youbiai.com/api/ic/if_dt_tflow_latitude_and_longitude \
-d 'access_token=4b153b0b3476c8aa3cbec9d8e76273cf' \
-d 'vid=NHeN4UqVsohGS55I7LBdh' \


Sample Response
{
  "code":200,
  "msg":"success",
  "data":{
    "vid":"NHeN4UqVsohGS55I7LBdh",
    "status":1,
    "position_direction_ananlysis":"0"
  }
}