地铁组件
地铁组件提供地铁图展示功能及地铁站点详情跳转。如果定位城市为当前城市,可以定位到附近的地铁站。
地铁组件的属性包括:city(城市),width(地铁图宽度)及height(地铁图高度)。建议开发者直接使用css属性来定义宽高,如style=“width:100%;height:500px;”。
当当前城市为city指定城市时,会给出距离当前点最近的地铁站。
代码片如下:
<lbs-subway city="北京" style="height:100%"> </lbs-subway>
运行效果如下:
完整代码请参考:
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"> <title>地铁组件</title> <script src="http://api.map.baidu.com/components?ak=yourak&v=1.0"> </script> </head> <body> <!—地铁组件--> <lbs-subway city="北京" style="height:100%"> </lbs-subway> </body> </html>