AMapPOISearch POIAround Method (Double, Double, String, String, UInt32)高德地图 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,
	uint radius = 3000
)

Parameters

centerX
Type: 联机System Double
中心点经度
centerY
Type: 联机System Double
中心点纬度
keywords
Type: 联机System String
查询关键字,多个关键字用“|”分割,“空格"表示与,“双引号”表示不可分割,keywords与types二选其一为必填
types
Type: 联机System String
POI分类,可以填写分类编码和分类名称(《参见POI分类编码表》)
radius (Optional)
Type: 联机System UInt32
查询半径(默认值为 3000 单位:米),取值为0-50000

Return Value

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