端口:8001
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"
}
/v1/cities/:id
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"
}
/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个数据
]