(→地铁组件) |
|||
第4行: | 第4行: | ||
地铁组件的属性包括:city(城市),width(地铁图宽度)及height(地铁图高度)。 | 地铁组件的属性包括:city(城市),width(地铁图宽度)及height(地铁图高度)。 | ||
− | + | 当当前城市为city指定城市时,会给出距离当前点最近的地铁站。 | |
+ | |||
+ | '''代码片如下:''' | ||
<pre> | <pre> | ||
− | <lbs-subway city="北京" | + | <lbs-subway city="北京" style="height:100%"> </lbs-subway> |
</pre> | </pre> | ||
− | |||
− | |||
− | 完整代码请参考: | + | '''运行效果如下:''' |
+ | |||
+ | http://api.map.baidu.com/lbsapi/cloud/cms/jsapi/sub.png | ||
+ | |||
+ | '''完整代码请参考:''' | ||
<syntaxhighlight lang="html4strict" line start="100" enclose="div"> | <syntaxhighlight lang="html4strict" line start="100" enclose="div"> | ||
2014年7月1日 (二) 11:04的版本
地铁组件
地铁组件提供地铁图展示功能及地铁站点详情跳转。如果定位城市为当前城市,可以定位到附近的地铁站。
地铁组件的属性包括:city(城市),width(地铁图宽度)及height(地铁图高度)。
当当前城市为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>