AMapNavigationSearch BusNavigation Method (Double, Double, Double, Double, UInt32, Boolean, 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<AMapRouteResults> BusNavigation(
	double originX,
	double originY,
	double destinationX,
	double destinationY,
	uint strategy,
	bool nightflag,
	string city
)

Parameters

originX
Type: 联机System Double
出发地经度
originY
Type: 联机System Double
出发地纬度
destinationX
Type: 联机System Double
目的地经度
destinationY
Type: 联机System Double
目的地纬度
strategy
Type: 联机System UInt32
公交换乘策略:0-最快捷模式;1-最经济模式;2-最少换乘模式;3-最少步行模式;4-最舒适模式;5-不乘地铁模式
nightflag
Type: 联机System Boolean
是否计算夜班车,true为包含夜间线路,false为不包含夜间线路
city
Type: 联机System String
城市,可选值:cityname(中文或中文全拼)、citycode、adcode

Return Value

Type: 联机Task AMapRouteResults 
返回多条公交规划路线,详见AMapRouteResults定义
See Also