为了账号安全,请及时绑定邮箱和手机立即绑定

如何在百度地图上用地名代替经纬坐标搜索地区 江湖救急!!!小弟先谢过了~ 下边是百度API示例 请用地名代替经纬度!!

如何在百度地图上用地名代替经纬坐标搜索地区 江湖救急!!!小弟先谢过了~ 下边是百度API示例 请用地名代替经纬度!!

荇箜下的枫 2015-12-29 16:49:57
<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%;margin:0;font-family:"微软雅黑";} #allmap{height:500px;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=9FEKKMGvHGZ42Lak9F5mlltV"></script> <title>城市名定位</title> </head> <body> <div id="allmap"></div> <div id="r-result"> 经度: <input id="longitude" type="text" style="width:100px; margin-right:10px;" /> 纬度: <input id="latitude" type="text" style="width:100px; margin-right:10px;" /> <input type="button" value="查询" onclick="theLocation()" /> </div> </body> </html> <script type="text/javascript"> // 百度地图API功能 var map = new BMap.Map("allmap"); map.centerAndZoom(new BMap.Point(116.331398,39.897445),11); 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);       } } </script>
查看完整描述

2 回答

?
lkkle

TA贡献2条经验 获得超0个赞

26行换成

var point = map.centerAndZoom("北京", 12);

查看完整回答
反对 回复 2015-12-31
  • 荇箜下的枫
    荇箜下的枫
    不是这个意思。。。 示例上是用经纬度查某地所在位置 我需要的是用地名查其所在
  • 2 回答
  • 0 关注
  • 2239 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信