域名: http://cangdu.org
端口:8001
http://cangdu.org:8001/v1/cities
http://cangdu.org:8001/v1/cities?type=guess
GET
参数 | 是否必选 | 类型 | 说明 |
---|---|---|---|
type | Y | string | guess:定位城市, hot:热门城市, group:所有城市 |
{
id: 1,
name: "上海",
abbr: "SH",
area_code: "021",
sort: 1,
latitude: 31.23037,
longitude: 121.473701,
is_map: true,
pinyin: "shanghai"
}
http://cangdu.org:8001/v1/cities/:id
http://cangdu.org:8001/v1/cities/1
GET
参数 | 是否必选 | 类型 | 说明 |
---|---|---|---|
id | Y | int | 城市id |
{
id: 1,
name: "上海",
abbr: "SH",
area_code: "021",
sort: 1,
latitude: 31.23037,
longitude: 121.473701,
is_map: true,
pinyin: "shanghai"
}
http://cangdu.org:8001/v1/pois
http://cangdu.org:8001/v1/pois?city_id=1&keyword=迪士尼&type=search
GET
参数 | 是否必选 | 类型 | 说明 |
---|---|---|---|
city_id | Y | int | 城市id |
keyword | Y | string | 搜索关键词 |
type | N | string | 搜索类型,默认为search |
[
{
name: "上海迪士尼乐园",
address: "上海市浦东新区申迪西路753号",
latitude: 31.14419,
longitude: 121.66034,
geohash: "31.14419,121.66034"
},
{
name: "迪士尼",
address: "上海市浦东新区妙境路1118号家乐福川沙店1层",
latitude: 31.18183,
longitude: 121.69279,
geohash: "31.18183,121.69279"
},
... //共10条数据
]
http://cangdu.org:8001/v2/pois/:geohash
http://cangdu.org:8001/v2/pois/31.22967,121.4762
GET
参数 | 是否必选 | 类型 | 说明 |
---|---|---|---|
geohash | Y | string | 经纬度 |
{
address: "上海市黄浦区西藏中路",
city: "上海市",
geohash: "31.22967,121.4762",
latitude: "31.22967",
longitude: "121.4762",
name: "黄浦区上海人民广场"
}
http://cangdu.org:8001/v2/index_entry
http://cangdu.org:8001/v2/index_entry
GET
参数 | 是否必选 | 类型 | 说明 |
---|
[
{
id: 1,
is_in_serving: true,
description: "0元早餐0起送,每天都有新花样。",
title: "预订早餐",
link: "",
image_url: "/d/49/7757ff22e8ab28e7dfa5f7e2c2692jpeg.jpeg",
icon_url: "",
title_color: "",
__v: 0
},
{
id: 65,
is_in_serving: true,
description: "",
title: "土豪推荐",
image_url: "/d/49/7757ff22e8ab28e7dfa5f7e2c2692jpeg.jpeg",
link: "",
icon_url: "",
title_color: "",
__v: 0
},
... 共n条数据
]