AMapBusSearch BusLineKeyWords Method (String, UInt32, UInt32, String, Extensions)高德地图 Windows Phone 8 搜索API参考手册
高德地图 Windows Phone 8 搜索API参考手册
根据公交路线关键字查询指定城市范围内的公交路线信息,可以通过设置extensions值为"All"返回出了基本信息以外的扩展信息

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

public static Task<AMapBusLineResults> BusLineKeyWords(
	string keyWords,
	uint offset,
	uint page,
	string city = null,
	Extensions extensions = Extensions.Base
)

Parameters

keyWords
Type: 联机System String
路线查询关键字,多个关键字用“|”分割,“空格"表示与,“双引号”表示不可分割
offset
Type: 联机System UInt32
每页记录数(默认值为20),取值为:1-100
page
Type: 联机System UInt32
当前页数(默认值为1),取值为:1-10
city (Optional)
Type: 联机System String
指定搜索城市,取值为:cityname(中文或中文全拼)、citycode、adcode (《参见城市编码表》)
extensions (Optional)
Type: Com.AMap.Api.Services Extensions
返回结果控制,All返回基本信息以外的扩展信息,Base只返回基本信息,默认为Base

Return Value

Type: 联机Task AMapBusLineResults 
返回公交路线结果类,详见AMapBusLineResults定义
See Also