微信公众号中高德地图显示路线

Posted For_elegant

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信公众号中高德地图显示路线相关的知识,希望对你有一定的参考价值。

微信公众号中高德地图显示路线

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="initial-scale=1.0, user-scalable=no, width=device-width"> <title></title> <style> body,#mapContainer{ margin:0; height:100%; width:100%; text-align: center; font-size:12px; } .center{ position: absolute; width: 100%; bottom: 24px; } </style> <link rel="stylesheet" href="http://cache.amap.com/lbs/static/main.css?v=1.0?v=1.0" /> //微信使用高德地图必须引入的js <script src="http://cache.amap.com/lbs/static/es5.min.js"></script> <script src="http://webapi.amap.com/maps?v=1.3&key=06fb75f531ce19fd2af711465487d07a"></script> <script> function init() { var button = document.getElementById(‘bt‘); map = new AMap.Map("mapContainer"); AMap.plugin(["AMap.Driving"], function() { var drivingOption = { policy:AMap.DrivingPolicy.LEAST_TIME, map:map }; var driving = new AMap.Driving(drivingOption); //构造驾车导航类 其他导航方式设置相同 //根据起终点坐标规划驾车路线 driving.search([{keyword:‘北京西站‘,city:‘010‘},{keyword:‘清华大学‘,city:‘010‘}],function(status,result){ //driving.search([‘起点坐标‘],[‘终点坐标‘],function(status,result){ //city:公交换乘的城市,支持城市名称、城市区号、电话区号,此项为必填 button.onclick = function(){ driving.searchOnAMAP({ origin:result.origin, destination:result.destination }); } }); }); } </script> </head> <body onload="init()"> <div id="mapContainer" ></div> <div class=‘center‘> <div id=‘bt‘ class="btmtip">点击去高德地图</div> </div> </div> </body> </html>

 

 

http://blog.csdn.net/hflxia/article/details/76714006

以上是关于微信公众号中高德地图显示路线的主要内容,如果未能解决你的问题,请参考以下文章

微信公众号中的新闻列表是怎么做的?是小程序模板吗?还是有固定的模板?

小白如何开通微信公众号中的订阅号(服务号)以及认证账号

微信公众号中添加外部链接地址的图文教程

微信公众号中的支付宝支付与微信支付

微信啥小程序可以发公告文章

vue项目在微信公众号中调用微信扫一扫