C#winform和百度API互動-----之讀取中js的參數

來源:互聯網
上載者:User

標籤:密鑰   調用   html   6.4   cal   微軟   user   city   this   

上百度的API

<!DOCTYPE html>
<html>
<head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 <meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
 <style type="text/css">
  body, html,#allmap {width: 100%;height: 100%;overflow: hidden;margin:0;font-family:"微軟雅黑";}
 </style>
 <script type="text/javascript" src="http://api.map.baidu.com/api?v=2.0&ak=您的密鑰"></script>
 <title>測距</title>
</head>
<body>
 <div id="allmap"></div>
</body>
</html>
<script type="text/javascript">
 // 百度地圖API功能
 var map = new BMap.Map("allmap");
 map.centerAndZoom("重慶",12);  //初始化地圖,設定城市和地圖層級。
 var pointA = new BMap.Point(106.486654,29.490295);  // 建立點座標A--大渡口區
 var pointB = new BMap.Point(106.581515,29.615467);  // 建立點座標B--江北區
 alert(‘從大渡口區到江北區的距離是:‘+(map.getDistance(pointA,pointB)).toFixed(2)+‘ 米。‘);  //擷取兩點距離,保留小數點後兩位
 var polyline = new BMap.Polyline([pointA,pointB], {strokeColor:"blue", strokeWeight:6, strokeOpacity:0.5});  //定義折線
 map.addOverlay(polyline);     //添加折線到地圖上
          function getdistance() //這個是自己添加的,自己定義個方法然後讓WINFORM調用,(當然也可以反過來,WINFORM中定義個方法,JS中再調用)
       {return  map.getDistance(pointA,pointB).toFixed(2);}
</script>

——————————————————————————————————————————————————————————————————————————————————————

加入控制項WEBBROWER

在表單load中加入代碼

 string str_url = Application.StartupPath + "\\HTM的名字.htm"; //htm要放到DEBUG目錄下  ,如果不用啟動目錄放任意目錄 string str_url="";自己琢磨吧                    Uri url = new Uri(str_url);              webBroGIS.Url = url;            webBroGIS.ObjectForScripting = this; 

上WINform代碼

 var s = webBrowser1.Document.InvokeScript("getdistance");//引號中是function的函數名,注意變數要用var型

txtbox.text=s.tostring();

-----------------------------------------------------------

幾個問題 1亂碼要把charset 改成gb2312,2秘鑰自己網上搜吧

C#winform和百度API互動-----之讀取中js的參數

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.