(→驾车组件) |
|||
第6行: | 第6行: | ||
'''核心代码如下:''' | '''核心代码如下:''' | ||
− | < | + | <source> |
<lbs-nav origin="百度大厦" destination="西单"/> | <lbs-nav origin="百度大厦" destination="西单"/> | ||
− | </ | + | </source> |
'''运行效果如下:''' | '''运行效果如下:''' | ||
第15行: | 第15行: | ||
'''完整代码请参考:''' | '''完整代码请参考:''' | ||
− | < | + | <source> |
<html> | <html> | ||
第26行: | 第26行: | ||
</head> | </head> | ||
<body> | <body> | ||
− | + | <!-- 驾车组件--> | |
− | + | <lbs-nav origin="百度大厦" destination="西单"/> | |
</body> | </body> | ||
</html> | </html> | ||
− | + | </source> | |
− | </ | + |
2014年12月16日 (二) 16:59的版本
驾车组件
驾车组件实现用户输入起终点名称给出线路规划信息的功能。
创建驾车组件,需要设置lbs-nav标签,并设置origin(起点名称)、destination(终点名称)和city(城市)等属性。
核心代码如下:
<lbs-nav origin="百度大厦" destination="西单"/>
运行效果如下:
完整代码请参考:
<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-nav origin="百度大厦" destination="西单"/> </body> </html>