搜尋
首頁web前端html教學高德地图根据关键词坐标拾取小工具_html/css_WEB-ITnose

今天早上在写代码的时候,需要用到地图坐标拾取工具,我们用的是搞的地图,在高德地图API官方网站中没有找到相关的坐标拾取工具。在网上找到这么个小工具,与大家分享下!

CSS

 1  html { background-color: #fff; } 2         body, div, h1, h2, h3, h4, ul, li, form, input, dl, dt, dd, p { margin: 0; padding: 0; font-family: 微软雅黑; } 3         h3 { +font-size:14px; _font-size: 14px; } 4         img { border: none; } 5         .c { clear: both; } 6         ul, ol, li { list-style: none; } 7         .clearfix:after { content: "."; visibility: hidden; display: block; height: 0; overflow: hidden; clear: both; } 8         * html .clearfix { height: 1%; } 9         * + html .clearfix { height: 1%; }10         body { font: 12px/1.5em 微软雅黑,Arial,Verdana,Helvetica,sans-serif; color: #333; }11         button, input, select, textarea { color: #999; }12         input[type="button"] { padding: 0 5px; color: #333; }13         .demo_box { width: 360px; }14         #iCenter { width: 100%; height: 100%; border: 1px solid #F6F6F6; }15         #r_title { line-height: 28px; padding-left: 5px; background-color: #D1EEEE; font-weight: bold; }16         #result { overflow: auto; margin-bottom: 5px; /*    width:661px;*/ height: 500px; }17         #result .sub_result { font-size: 12px; cursor: pointer; line-height: 20px; /*padding:0px 0 4px 2px;*/ border-bottom: 1px solid #C1FFC1; }18         #result .sub_result .detail { }19         #result .sub_result .detail h3 { color: #00A6AC; }20         a { color: #067EC0; text-decoration: none; }21         a:hover { text-decoration: underline; }22         .note { color: #999; }23         div.change { background-image: url(http://pages.haozu.ajkcdn.com/20110909/img/map/marker-h.png); }24         div.change div { background-image: url(http://pages.haozu.ajkcdn.com/20110909/img/map/marker-h-l.gif); }25         .markerContentStyle { position: relative; }26         .markerContentStyle span { background-color: #FFFFFF; color: #FF1493; width: 120px; heigth: 80px; border: 2px solid #D8BFD8; FONT-FAMILY: 华文行楷; position: absolute; top: -10px; left: 25px; white-space: nowrap -webkit-border-radius:5px; border-radius: 5px; }27         div.info { position: relative; z-index: 100; border: 1px solid #BCBCBC; box-shadow: 0 0 10px #B7B6B6; border-radius: 8px; background: rgb(255,255,255); /* The Fallback */ background-color: rgba(255,255,255,0.9); transition-duration: 0.25s; }28         div.info:hover { box-shadow: 0px 0px 15px #0CF; }29         div.info-top { position: relative; background: none repeat scroll 0 0 #F9F9F9; border-bottom: 1px solid #CCC; border-radius: 5px 5px 0 0; }30         div.info-top div { display: inline-block; color: #333333; font-size: 14px; font-weight: bold; line-height: 31px; padding: 0 10px; }31         div.info-top img { position: absolute; top: 10px; right: 10px; transition-duration: 0.25s; }32         div.info-top img:hover { box-shadow: 0px 0px 5px #000; }33         div.info-middle { font-size: 12px; padding: 10px; line-height: 21px; }34         div.info-bottom { height: 0px; width: 100%; clear: both; text-align: center; }35         div.info-bottom img { position: relative; z-index: 104; }36         table { height: 100%; }37         html, body { height: 100%; margin: 0px; padding: 0px; }38         .STYLE1 { color: #F3F3F3; }

 

JS

 1 var mapObj; 2         var marker = new Array(); 3         var windowsArr = new Array(); 4         //基本地图加载 5         function mapInit() { 6             mapObj = new AMap.Map("iCenter"); 7             //AMap.event.addListener(mapObj,'click',getLnglat); 8         } 9         function placeSearch() {10             var MSearch;11             mapObj.plugin(["AMap.PlaceSearch"], function () {12                 MSearch = new AMap.PlaceSearch({ //构造地点查询类13                     pageSize: 10,14                     pageIndex: 1,15                     city: "021" //城市16                 });17                 AMap.event.addListener(MSearch, "complete", keywordSearch_CallBack);//返回地点查询结果18                 var searchName = document.all.searchText.value;//查询关键字19                 MSearch.search(searchName); //关键字查询20             });21         }22         //添加marker&infowindow23         function addmarker(i, d) {24             var lngX = d.location.getLng();25             var latY = d.location.getLat();26             var markerOption = {27                 map: mapObj,28                 icon: "http://webapi.amap.com/images/" + (i + 1) + ".png",29                 position: new AMap.LngLat(lngX, latY)30             };31 32             var mar = new AMap.Marker(markerOption);33             marker.push(new AMap.LngLat(lngX, latY));34 35             var infoWindow = new AMap.InfoWindow({36                 content: "<h3 id="font-color-a-ac-i-d-name-font"><font color=\"#00a6ac\">  " + (i + 1) + ". " + d.name + "</font></h3>" + TipContents(d.type, d.address, d.tel),37                 size: new AMap.Size(300, 0),38                 autoMove: true,39                 offset: new AMap.Pixel(0, -30)40             });41             windowsArr.push(infoWindow);42             var aa = function (e) { infoWindow.open(mapObj, mar.getPosition()); };43             AMap.event.addListener(mar, "click", aa);44             AMap.event.addListener(mar, 'click', getLnglat);45         }46         //回调函数47         function keywordSearch_CallBack(data) {48             var resultStr = "";49             var poiArr = data.poiList.pois;50             var resultCount = poiArr.length;51             for (var i = 0; i < resultCount; i++) {52                 resultStr += "<div id='divid" + (i + 1) + "' onclick='openMarkerTipById1(" + i + ",this)' onmouseout='onmouseout_MarkerStyle(" + (i + 1) + ",this)' style=\"font-size: 12px;cursor:pointer;padding:0px 0 4px 2px; border-bottom:1px solid #C1FFC1;\"><table><tr><td><img  src="/static/imghwm/default1.png"  data-src="http://webapi.amap.com/maps?v=1.2&key=XXXXXXX"  class="lazy"  src=\"http://webapi.amap.com/images/" + (i + 1) + ".png\" alt="高德地图根据关键词坐标拾取小工具_html/css_WEB-ITnose" ></td>" + "<td><h3 id="font-color-a-ac-名称-poiArr-i-name-font"><font color=\"#00a6ac\">名称: " + poiArr[i].name + "</font></h3>";53                 resultStr += TipContents(poiArr[i].type, poiArr[i].address, poiArr[i].tel) + "</td></tr></table></div>";54                 addmarker(i, poiArr[i]);55             }56             mapObj.setFitView();57             document.getElementById("result").innerHTML = resultStr;58 59         }60         function TipContents(type, address, tel) {  //窗体内容61             if (type == "" || type == "undefined" || type == null || type == " undefined" || typeof type == "undefined") {62                 type = "暂无";63             }64             if (address == "" || address == "undefined" || address == null || address == " undefined" || typeof address == "undefined") {65                 address = "暂无";66             }67             if (tel == "" || tel == "undefined" || tel == null || tel == " undefined" || typeof address == "tel") {68                 tel = "暂无";69             }70             var str = "  地址:" + address + "<br />  电话:" + tel + " <br />  类型:" + type;71             return str;72         }73         function openMarkerTipById1(pointid, thiss) {  //根据id 打开搜索结果点tip74             thiss.style.background = '#CAE1FF';75             windowsArr[pointid].open(mapObj, marker[pointid]);76 77             //result中每个div触发的事件78             document.getElementById("lngX").value = marker[pointid].getLng();79             document.getElementById("latY").value = marker[pointid].getLat();80 81         }82         function onmouseout_MarkerStyle(pointid, thiss) { //鼠标移开后点样式恢复83             thiss.style.background = "";84         }85         //鼠标在地图上点击,获取经纬度坐标86         function getLnglat(e) {87             document.getElementById("lngX").value = e.lnglat.getLng();88             document.getElementById("latY").value = e.lnglat.getLat();89         }90 91         //关闭页面92         function CloseWind() {93             var lat = document.getElementById("lngX").value;94             var lon = document.getElementById("latY").value;95             opener.setValue(lat + "," + lon);96             window.close();97 98         }

 

HTML

 1 <script type="text/javascript"></script> 2     <table width="100%" border="0" cellspacing="0" cellpadding="0"> 3         <tr> 4             <td colspan="2" height="50"> 5                 <br> 6                 高德地图:<input type="text" name="searchText"> 7                 <input type="button" value="查询" onclick="placeSearch()" /> 输入位置信息 8                 <br><br>地图经纬度坐标: X:<input type="text" id="lngX" name="lngX" /> Y:<input type="text" id="latY" name="latY" /> 9                 <input type="button" name="btn_Close" id="btn_Close" value="确定,并关闭页面" onclick="CloseWind();" /> *选择正确地点之后,请点击该按钮10             </td>11         </tr>12         <tr>13             <td width="70%" height="500"> <div style="height:100%" id="iCenter"></div></td>14             <td valign="top">15                 <div class="demo_box">16                     <div id="r_title"><b>关键字查询结果:</b></div>17                     <div id="result"> </div>18                 </div>19                 <span class="STYLE1"></span>20             </td>21         </tr>22     </table>

 

程序员淘宝店:http://iduds.taobao.com

陳述
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
如何驗證您的HTML代碼?如何驗證您的HTML代碼?Apr 24, 2025 am 12:04 AM

HTML代碼可以通過在線驗證器、集成工具和自動化流程來確保其清潔度。 1)使用W3CMarkupValidationService在線驗證HTML代碼。 2)在VisualStudioCode中安裝並配置HTMLHint擴展進行實時驗證。 3)利用HTMLTidy在構建流程中自動驗證和清理HTML文件。

HTML與CSS和JavaScript:比較Web技術HTML與CSS和JavaScript:比較Web技術Apr 23, 2025 am 12:05 AM

HTML、CSS和JavaScript是構建現代網頁的核心技術:1.HTML定義網頁結構,2.CSS負責網頁外觀,3.JavaScript提供網頁動態和交互性,它們共同作用,打造出用戶體驗良好的網站。

HTML作為標記語言:其功能和目的HTML作為標記語言:其功能和目的Apr 22, 2025 am 12:02 AM

HTML的功能是定義網頁的結構和內容,其目的在於提供一種標準化的方式來展示信息。 1)HTML通過標籤和屬性組織網頁的各個部分,如標題和段落。 2)它支持內容與表現分離,提升維護效率。 3)HTML具有可擴展性,允許自定義標籤增強SEO。

HTML,CSS和JavaScript的未來:網絡開發趨勢HTML,CSS和JavaScript的未來:網絡開發趨勢Apr 19, 2025 am 12:02 AM

HTML的未來趨勢是語義化和Web組件,CSS的未來趨勢是CSS-in-JS和CSSHoudini,JavaScript的未來趨勢是WebAssembly和Serverless。 1.HTML的語義化提高可訪問性和SEO效果,Web組件提升開發效率但需注意瀏覽器兼容性。 2.CSS-in-JS增強樣式管理靈活性但可能增大文件體積,CSSHoudini允許直接操作CSS渲染。 3.WebAssembly優化瀏覽器應用性能但學習曲線陡,Serverless簡化開發但需優化冷啟動問題。

HTML:結構,CSS:樣式,JavaScript:行為HTML:結構,CSS:樣式,JavaScript:行為Apr 18, 2025 am 12:09 AM

HTML、CSS和JavaScript在Web開發中的作用分別是:1.HTML定義網頁結構,2.CSS控製網頁樣式,3.JavaScript添加動態行為。它們共同構建了現代網站的框架、美觀和交互性。

HTML的未來:網絡設計的發展和趨勢HTML的未來:網絡設計的發展和趨勢Apr 17, 2025 am 12:12 AM

HTML的未來充滿了無限可能。 1)新功能和標準將包括更多的語義化標籤和WebComponents的普及。 2)網頁設計趨勢將繼續向響應式和無障礙設計發展。 3)性能優化將通過響應式圖片加載和延遲加載技術提升用戶體驗。

HTML與CSS vs. JavaScript:比較概述HTML與CSS vs. JavaScript:比較概述Apr 16, 2025 am 12:04 AM

HTML、CSS和JavaScript在網頁開發中的角色分別是:HTML負責內容結構,CSS負責樣式,JavaScript負責動態行為。 1.HTML通過標籤定義網頁結構和內容,確保語義化。 2.CSS通過選擇器和屬性控製網頁樣式,使其美觀易讀。 3.JavaScript通過腳本控製網頁行為,實現動態和交互功能。

HTML:是編程語言還是其他?HTML:是編程語言還是其他?Apr 15, 2025 am 12:13 AM

HTMLISNOTAPROGRAMMENGUAGE; ITISAMARKUMARKUPLAGUAGE.1)htmlStructures andFormatSwebContentusingtags.2)itworkswithcsssforstylingandjavascript for Interactivity,增強WebevebDevelopment。

See all articles

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

Video Face Swap

Video Face Swap

使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱工具

SublimeText3漢化版

SublimeText3漢化版

中文版,非常好用

SublimeText3 英文版

SublimeText3 英文版

推薦:為Win版本,支援程式碼提示!

SublimeText3 Linux新版

SublimeText3 Linux新版

SublimeText3 Linux最新版

WebStorm Mac版

WebStorm Mac版

好用的JavaScript開發工具

mPDF

mPDF

mPDF是一個PHP庫,可以從UTF-8編碼的HTML產生PDF檔案。原作者Ian Back編寫mPDF以從他的網站上「即時」輸出PDF文件,並處理不同的語言。與原始腳本如HTML2FPDF相比,它的速度較慢,並且在使用Unicode字體時產生的檔案較大,但支援CSS樣式等,並進行了大量增強。支援幾乎所有語言,包括RTL(阿拉伯語和希伯來語)和CJK(中日韓)。支援嵌套的區塊級元素(如P、DIV),