getEstimatePrice
功能: 获取预估价格
请求参数
参数名 | 类型 | 说明 |
---|---|---|
imei | string(可选) | 手机imei |
start_lat | float | 起点纬度 |
start_lng | float | 起点经度 |
from_name | string | 出发地名称 |
end_lat | float | 终点纬度 |
end_lng | float | 终点经度 |
to_name | string | 目的地名称 |
product_type | string | 产品类型 |
ride_type | string | 运力类型 |
map_type | string(可选) | 坐标系类型,支持坐标系:baidu/wgs/soso |
departure_time | string(可选) | 出行时间,出行时间不同,预估价格不同,默认为当前时间 |
返回
参数名 | 类型 | 说明 |
---|---|---|
product_type | string | 产品类型 |
ride_type | string | 运力类型 |
currency_code | string | 货币类型(CNY:人民币) |
estimate_price | int | 预估价格,单位:分 |
time_in_second | int | 行程预估耗时,单位:秒 |
distance_in_meter | int | 预估里程,单位:米 |
car_type | int | 车型 |
dynamic | float | 动调倍数,只在登录后返回真实动调倍数 |
estimate_id | string | 价格预估id,在请求行程时必须携带 |
jump_url | string | 跳转到端的链接 |
download_url | string | 下载端的链接 |
carpool_tag | int | 0 - 未开通,1 - 拼车无拼座,2 - 支持拼车拼座 |
carpool_info | json类型 | 拼车拼座信息,[{"seat":1,"estimate_price":2340},{"seat":2,"estimate_price":2540}] |
seat(支持拼座时返回) | 拼座数 | |
estimate_price | 拼车拼座预估价 |
示例
{
"price": [
{
"product_type": "private-car",
"ride_type": "compact",
"currency_code": "CNY",
"estimate_price": 6110,
"time_in_second": 2040,
"distance_in_meter": 9500,
"car_type": 2,
"dynamic": 1,
"estimate_id": "a160b88ed1beda39cb86417180644dce"
"jump_url": "onetravel://flash",
"download_url": "http://webapp.didistatic.com/static/webapp/shield/z/webapp-download/webapp-download/index.html",
}
]
}
有拼车无拼座的返回
{
"price": [
{
"product_type": "express-car",
"ride_type": "express",
"currency_code": "CNY",
"estimate_price": 8470,
"time_in_second": 1320,
"distance_in_meter": 9670,
"car_type": 64,
"dynamic": 1.1,
"estimate_id": "363ca05ba685a14f6e058cffaaf88124",
"jump_url": "onetravel://flash",
"download_url": "http://webapp.didistatic.com/static/webapp/shield/z/webapp-download/webapp-download/index.html",
"carpool_tag": "1",
"carpool_info": [
{
"estimate_price": 3340
}
]
}
]
}
有拼座的返回
{
"price": [
{
"product_type": "express-car",
"ride_type": "express",
"currency_code": "CNY",
"estimate_price": 8470,
"time_in_second": 1320,
"distance_in_meter": 9670,
"car_type": 64,
"dynamic": 1.1,
"estimate_id": "363ca05ba685a14f6e058cffaaf88124",
"jump_url": "onetravel://flash",
"download_url": "http://webapp.didistatic.com/static/webapp/shield/z/webapp-download/webapp-download/index.html",
"carpool_tag": "2",
"carpool_info": [
{
"seat": 1,
"estimate_price": 2340
},
{
"seat": 2,
"estimate_price": 2540
}
]
}
]
}