AMapPOISearch POIAround Method (Double, Double, String, String, Boolean, Boolean, UInt32, UInt32, UInt32, UInt32, Extensions, String)高德地图 Windows Phone 8 搜索API参考手册
高德地图 Windows Phone 8 搜索API参考手册
根据中心点和半径搜索指定关键字、指定分类的兴趣点,可以设置搜索城市、是否返回详细信息、排序规则、每页记录数以及当前页数

Namespace: Com.AMap.Api.Services
Assembly: WindowPhone8DOC (in WindowPhone8DOC.dll) Version: 2.0.0.0
Syntax

public static Task<AMapPOIResults> POIAround(
	double centerX,
	double centerY,
	string keywords,
	string types,
	bool groupbuy,
	bool discount,
	uint radius,
	uint sortrule,
	uint offset,
	uint page,
	Extensions extensions = Extensions.Base,
	string city = null
)

Parameters

centerX
Type: 联机System Double
中心点经度
centerY
Type: 联机System Double
中心点纬度
keywords
Type: 联机System String
查询关键字,多个关键字用“|”分割,“空格"表示与,“双引号”表示不可分割,keywords与types二选其一为必填
types
Type: 联机System String
POI分类,可以填写分类编码和分类名称(《参见POI分类编码表》)
groupbuy
Type: 联机System Boolean
是否返回带团购信息的POI(默认为false),当groupbuy或者discount有一个设置为YES,extensions值自动设置为Extensions.All,如果groupbuy和discount都设置为YES,表示返回带团购或者优惠的POI集合
discount
Type: 联机System Boolean
是否返回带优惠信息的POI(默认为false),当groupbuy或者discount有一个设置为YES,extensions值自动设置为Extensions.All,如果groupbuy和discount都设置为YES,表示返回带团购或者优惠的POI集合
radius
Type: 联机System UInt32
查询半径(默认值为 3000 单位:米),取值为0-50000
sortrule
Type: 联机System UInt32
排序规则(默认为0),取值为:0-混合排序;1-距离排序
offset
Type: 联机System UInt32
每页记录数(默认值为20),取值为:1-100
page
Type: 联机System UInt32
当前页数(默认值为1),取值为:1-10
extensions (Optional)
Type: Com.AMap.Api.Services Extensions
返回结果控制,All返回基本信息以外的扩展信息,Base只返回基本信息,默认为Base
city (Optional)
Type: 联机System String
城市,可选值:cityname(中文或中文全拼)、citycode、adcode

Return Value

Type: 联机Task AMapPOIResults 
返回兴趣点信息,详见AMapPOIResults定义
See Also