怎么利用百度地图API获取某个地区区域轮廓矢量图
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎么利用百度地图API获取某个地区区域轮廓矢量图相关的知识,希望对你有一定的参考价值。
参考技术A 将下面代码复制到记事本,另存为html文件,用浏览器打开,输入你要获取的地区名称点击‘获取轮廓线’,只能获取 省 市 县 的轮廓,暂时还没有乡镇和村的。<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<script type="text/javascript" src="http://api.map.baidu.com/api?v=1.3"></script>
<title>获取地区轮廓线</title>
</head>
<body>
<div id="container" style="width:100%;height:500px"></div>
<input type="text" id="districtName" onFocus="this.select()"/>
<input type="button" onclick="getBoundary()" value="获取轮廓线"/>
<textarea id="Div1" style="width:100%;height:200px"></textarea>
<script type="text/javascript">
var map = new BMap.Map("container");
map.centerAndZoom(new BMap.Point(116.403765, 39.914850), 5);
map.addControl(new BMap.NavigationControl(type: BMAP_NAVIGATION_CONTROL_SMALL));
map.enableScrollWheelZoom();
function getBoundary()
var bdary = new BMap.Boundary();
var name = document.getElementById("districtName").value;
bdary.get(name, function(rs) //获取行政区域
map.clearOverlays(); //清除地图覆盖物
var count = rs.boundaries.length; //行政区域的点有多少个
for(var i = 0; i < count; i++)
var ply = new BMap.Polygon(rs.boundaries[i], strokeWeight: 2, strokeColor: "#ff0000"); //建立多边形覆盖物
map.addOverlay(ply); //添加覆盖物
map.setViewport(ply.getPath()); //调整视野
document.getElementById('Div1').innerText = rs.boundaries;
//'"type":"Feature","id":"0","properties":"name":"'+name+'","geometry":"type":"Polygon","coordinates":[[[' + String().replace(';','],[') + ']]';
);
</script>
</body>
</html>本回答被提问者和网友采纳
想知道: 百度地图上某个点的坐标怎么获取到?谢谢
官方获取办法
1、搜索“百度地图api”
2、 第一条结果点击进入,这是一个开发者用的网站,里面集成了各种有用的工具,找到菜单开发-工具支持-坐标拾取器
3、鼠标放上去,可以获取坐标
参考技术A 坐标拾取系统。本回答被提问者采纳以上是关于怎么利用百度地图API获取某个地区区域轮廓矢量图的主要内容,如果未能解决你的问题,请参考以下文章