public static class NearbySearch.NearbyQuery
extends java.lang.Object
构造器和说明 |
---|
NearbyQuery() |
限定符和类型 | 方法和说明 |
---|---|
LatLonPoint |
getCenterPoint()
返回检索中心点。
|
int |
getCoordType()
返回坐标类型。
|
int |
getRadius()
返回检索的半径。
|
int |
getTimeRange()
返回检索的时间范围。
|
int |
getType()
返回检索类型。
|
void |
setCenterPoint(LatLonPoint latLonPoint)
检索的中心点,必选参数。
|
void |
setCoordType(int coordType)
设置坐标类型,NearbySearch.GPS代表GPS坐标系,NearbySearch.AMAP代表高德坐标系,默认为高德坐标系。
|
void |
setRadius(int radius)
设置检索的半径,下限为0米,默认为3000米,上限为10000米,可选参数。
|
void |
setTimeRange(int period)
设置检索的时间范围,默认从当前范围向前推移period长度的时间,单位秒级。
|
void |
setType(NearbySearchFunctionType type)
设置检索的类型。
|
public void setCenterPoint(LatLonPoint latLonPoint)
latLonPoint
- 检索的中心点坐标。public LatLonPoint getCenterPoint()
public int getRadius()
public void setRadius(int radius)
radius
- 检索的半径。public void setType(NearbySearchFunctionType type)
type
- NearbySearchFunctionType枚举类型。public int getType()
public void setCoordType(int coordType)
coordType
- 坐标类型。public int getCoordType()
public void setTimeRange(int period)
period
- 检索的时间长度。public int getTimeRange()