您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關用C#調用百度地圖并實現坐標點的設置以及讀取的案例,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
申請百度地圖密鑰以及查看百度API
網址:http://lbsyun.baidu.com/apiconsole/key#/home
網址:http://lbsyun.baidu.com/jsdemo.htm#c1_3
程序實現功能:
1、輸入網址那可以調用本地的html文件,也可以訪問其他網站
2、輸入坐標、添加坐標按鈕,可以將坐標值傳入html文件中,顯示在經緯度的文本框中
3、定位按鈕可以將地圖重新定位,定位中心是文本框內的經緯度
4、添加標注點是將文本框內的經緯度添加坐標到地圖
5、刪除標注按鈕可以刪除全部標注點
6、鼠標點擊地圖,可以在文本框內顯示點擊的坐標經緯度
7、點擊開始實時顯示按鈕,鼠標在地圖上移動,可以獲得實時經緯度
最終圖
利用webBrowser控件展示地圖
VS創建工程,添加控件webBrowser,新建.html文件,.html文件參考百度API,將其寫入文件
為了能與JS交互,首先引入using System.Security.Permissions;,然后在namespace下必須加入兩行:
[PermissionSet(SecurityAction.Demand, Name = "FullTrust")] [System.Runtime.InteropServices.ComVisibleAttribute(true)]
給窗體一個Load事件、、、這個是功能的主要點
然后窗體運行的代碼:
private void Form1_Load(object sender, EventArgs e) { try { //string str_url = Application.StartupPath + "../HTMLPage1.html";// 添加自己添加的html文件名,注意使用相對路徑的方法 HTMLPage1.html要復制到debug目錄下 string str_url = "C:/Users/12606/Desktop/C#/map/map/HTMLPage1.html";// 添加自己添加的html文件名,注意使用相對路徑的方法 HTMLPage1.html要復制到debug目錄下 Uri url = new Uri(str_url); webBrowser1.Url = url; // WebBrowser控件顯示的網頁路徑 webBrowser1.ObjectForScripting = this; // 將當前類設置為可由腳本訪問 textBox1.Text = str_url; } catch (Exception ex) { MessageBox.Show(ex.Message, "異常", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
.html文件
<!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{ width: 100%; height: 100%; overflow: hidden; margin: 0; font-family: "微軟雅黑"; } #allmap { height: 97%; width: 100%; } #r-result { width: 100%; font-size: 14px; } </style> <script type="text/javascript" src="http://api.map.baidu.com/api?v=2.0&ak=你的密鑰"></script> <title>地圖展示</title> </head> <body> <div id="r-result"> <!--文字和文本框---> 經度: <input id="longitude" type="text" /> 緯度: <input id="latitude" type="text" /> <!--按鈕---> <input type="button" value="定位" onclick="theLocation()" /> <input type="button" value="添加標注" onclick="addPoint()" /> <input type="button" value="刪除標注" onclick="deletePoint()" /> </div> <div id="allmap"></div> <b id="mouselng">0</b> <b id="mouselat">0</b> </body> </html> <script type="text/javascript"> // 百度地圖API功能 var map = new BMap.Map("allmap"); // 創建Map實例 var point = new BMap.Point(120.371, 30.327); // 創建點坐標 map.centerAndZoom(point, 17); // 初始化地圖,設置中心點坐標和地圖級別 //向地圖添加標注 var marker = new BMap.Marker(point); // 創建標注 map.addOverlay(marker); // 將標注添加到地圖中 // 添加帶有定位的導航控件 var navigationControl = new BMap.NavigationControl({ // 靠左上角位置 anchor: BMAP_ANCHOR_TOP_LEFT, // LARGE類型 type: BMAP_NAVIGATION_CONTROL_LARGE, // 啟用顯示定位 enableGeolocation: true }); map.addControl(navigationControl); //添加地圖單擊顯示GPS事件 function showInfo(e) { //alert(e.point.lng + ", " + e.point.lat);//窗口顯示點擊位置的GPS document.getElementById("longitude").innerText = e.point.lng; document.getElementById("latitude").innerText = e.point.lat; document.getElementById("mouselng").innerHTML = e.point.lng; document.getElementById("mouselat").innerHTML = e.point.lat; } map.addEventListener("click", showInfo); //監聽事件 //添加地圖類型控件 map.addControl(new BMap.MapTypeControl({ mapTypes:[ BMAP_NORMAL_MAP, BMAP_HYBRID_MAP ] })); var opts = { offset: new BMap.Size(100, 20) } map.addControl(new BMap.ScaleControl(opts));//比例尺控件 //map.addControl(new BMap.ScaleControl()); //比例尺控件 map.setCurrentCity("杭州"); // 僅當設置城市信息時,MapTypeControl的切換功能才能可用 map.enableScrollWheelZoom(true); //開啟鼠標滾輪縮放 // 用經緯度設置地圖中心點 function theLocation() { if (document.getElementById("longitude").value != "" && document.getElementById("latitude").value != "") { map.clearOverlays(); var new_point = new BMap.Point(document.getElementById("longitude").value, document.getElementById("latitude").value); var marker = new BMap.Marker(new_point); // 創建標注 map.addOverlay(marker); // 將標注添加到地圖中 map.panTo(new_point); //用經緯度設置地圖中心點 } } // 添加標注 function addPoint() { if (document.getElementById("longitude").value != "" && document.getElementById("latitude").value != "") { var new_point = new BMap.Point(document.getElementById("longitude").value, document.getElementById("latitude").value); var marker = new BMap.Marker(new_point); // 創建標注 map.addOverlay(marker); // 將標注添加到地圖中 } } // 刪除所有標注 function deletePoint() { //獲取地圖上所有的覆蓋物,并刪除 //map.clearOverlays(); //獲取地圖上所有的覆蓋物,并刪除 var allOverlay = map.getOverlays(); for (var i = 0; i < allOverlay.length; i++) { if (allOverlay[i].toString() == "[object Marker]") { map.removeOverlay(allOverlay[i]); } } ////刪除指定經緯度的標注 //if (document.getElementById("longitude").value != "" && document.getElementById("latitude").value != "") { // var new_point = new BMap.Point(document.getElementById("longitude").value, document.getElementById("latitude").value); // var marker = new BMap.Marker(new_point); // 創建標注 // map.removeOverlay(marker); //} } map.addEventListener("mousemove", GetlngAndlat); function GetlngAndlat(e) { if (e.point.lng != null) { document.getElementById("mouselng").innerHTML = e.point.lng; document.getElementById("mouselat").innerHTML = e.point.lat; } } </script>
http://lbsyun.baidu.com/jsdemo.htm#c1_3
百度官方文檔給了很多Demo,可根據需求來寫
Form1.cs完整代碼
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using System.Security.Permissions; using System.IO; namespace map { // 而為了能與JS交互,首先引入using System.Security.Permissions;,然后在namespace下必須加入兩行: [PermissionSet(SecurityAction.Demand, Name = "FullTrust")]//調用JS代碼必要 [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { try { //string str_url = Application.StartupPath + "../HTMLPage1.html";// 添加自己添加的html文件名,注意使用相對路徑的方法 HTMLPage1.html要復制到debug目錄下 string str_url = "C:/Users/12606/Desktop/C#/map/map/HTMLPage1.html";// 添加自己添加的html文件名,注意使用相對路徑的方法 HTMLPage1.html要復制到debug目錄下 Uri url = new Uri(str_url); webBrowser1.Url = url; // WebBrowser控件顯示的網頁路徑 webBrowser1.ObjectForScripting = this; // 將當前類設置為可由腳本訪問 textBox1.Text = str_url; } catch (Exception ex) { MessageBox.Show(ex.Message, "異常", MessageBoxButtons.OK, MessageBoxIcon.Error); } } private void button1_Click(object sender, EventArgs e) { //本地文件 MapWinForms\bin\Debug //string url = Application.StartupPath + "\\HTMLPage1.html"; //string url = "C:/Users/12606/Desktop/C#/map/map/HTMLPage1.html"; //textBox1.Text = url; string url = textBox1.Text.ToString(); //屏蔽js相關錯誤 webBrowser1.ScriptErrorsSuppressed = true; //導航顯示本地HTML文件 webBrowser1.Navigate(url); } private void timer1_Tick(object sender, EventArgs e) { try { string tag_lng = webBrowser1.Document.GetElementById("mouselng").InnerText; string tag_lat = webBrowser1.Document.GetElementById("mouselat").InnerText; double dou_lng, dou_lat; if (double.TryParse(tag_lng, out dou_lng) && double.TryParse(tag_lat, out dou_lat)) { label2.Text = "當前坐標:" + dou_lng.ToString("F6") + "," + dou_lat.ToString("F6");//保留小數點后6位 } } catch (Exception ee) { MessageBox.Show(ee.Message); } } private void btnGetLocation_Click(object sender, EventArgs e) { if (btnGetLocation.Text == "開啟實時坐標") { timer1.Enabled = true; btnGetLocation.Text = "關閉實時坐標"; } else { btnGetLocation.Text = "開啟實時坐標"; timer1.Enabled = false; } } private void btnGPS_Click(object sender, EventArgs e) { webBrowser1.Document.GetElementById("longitude").InnerText = textBox_longitude.Text; webBrowser1.Document.GetElementById("latitude").InnerText = textBox_latitude.Text; } } }
關于用C#調用百度地圖并實現坐標點的設置以及讀取的案例就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。