<!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" />
<script type="text/javascript" src="http://api.map.baidu.com/api?v=2.0&ak=youak"></script>
<script type="text/javascript" src="http://api.map.baidu.com/library/Heatmap/2.0/src/Heatmap_min.js"></script>
<title>显示多个文本</title>
<style type="text/css">
ul,li{list-style: none;margin:0;padding:0;float:left;}
html{height:100%}
body{height:100%;margin:0px;padding:0px;font-family:"微软雅黑";}
#l-map{height:95%;width:100%;}
#container{height:100%;width:100%;}
#r-result{width:100%;}
</style>
</head>
<body>
<div id="r-result"><input type="text" id="suggestId" size="20" value="百度" style="width:150px;" /><input type="button" onclick="add_sosuo();" value="搜索" /><input type="text" id="demo1" size="20" style="width:150px;" /><input type="button" onclick="add_wenzi();" value="添加文字" /></div>
<div id="container"></div>
<div id="l-map"></div>
<div id="searchResultPanel" style="border:1px solid #C0C0C0;width:150px;height:auto; display:none;"></div>
</body>
</html>
<script type="text/javascript">
var map = new BMap.Map("container");
var point = new BMap.Point(116.315992,39.939071);
map.centerAndZoom(point, 16);
map.enableScrollWheelZoom(true); //开启鼠标滚轮缩放
function G(id) {
return document.getElementById(id);
}
var ac = new BMap.Autocomplete( //建立一个自动完成的对象
{"input" : "suggestId"
,"location" : map
});
ac.addEventListener("onhighlight", function(e) { //鼠标放在下拉列表上的事件
var str = "";
var _value = e.fromitem.value;
var value = "";
if (e.fromitem.index > -1) {
value = _value.province + _value.city + _value.district + _value.street + _value.business;
}
str = "FromItem<br />index = " + e.fromitem.index + "<br />value = " + value;
value = "";
if (e.toitem.index > -1) {
_value = e.toitem.value;
value = _value.province + _value.city + _value.district + _value.street + _value.business;
}
str += "<br />ToItem<br />index = " + e.toitem.index + "<br />value = " + value;
G("searchResultPanel").innerHTML = str;
});
var myValue;
ac.addEventListener("onconfirm", function(e) { //鼠标点击下拉列表后的事件
var _value = e.item.value;
myValue = _value.province + _value.city + _value.district + _value.street + _value.business;
G("searchResultPanel").innerHTML ="onconfirm<br />index = " + e.item.index + "<br />myValue = " + myValue;
setPlace();
});
function setPlace(){
//map.clearOverlays(); //清除地图上所有覆盖物
function myFun(){
var pp = local.getResults().getPoi(0).point; //获取第一个智能搜索的结果
map.centerAndZoom(pp, 18);
map.addOverlay(new BMap.Marker(pp)); //添加标注
}
var local = new BMap.LocalSearch(map, { //智能搜索
onSearchComplete: myFun
});
local.search(myValue);
}
var mapPoints = [
{x:30.18015,y:120.174968,title:"C",con:"我是C",branch:"老三"},
{x:30.324994,y:120.164399,title:"D",con:"我是D",branch:"老四"},
{x:30.24884,y:120.305074,title:"E",con:"我是E",branch:"老五"}
];
//var i = 0;
// 函数 创建多个标注
function markerFun (points,label,infoWindows) {
map.addOverlay(label);
label.addEventListener("click",function (event) {
console.log("0001");
map.openInfoWindow(infoWindows,points);//参数:窗口、点 根据点击的点出现对应的窗口
});
}
function addlab () {
for (var i=0; i < mapPoints.length; i++) {
var points = new BMap.Point(mapPoints[i].x, mapPoints[i].y);//创建坐标点
var opts = {
position: points, // 指定文本标注所在的地理位置
offset: new BMap.Size(0, 0), //设置文本偏移量
}
var label = new BMap.Label(mapPoints[i].branch, opts, {
offset: new BMap.Size(0, 0)
}); // 创建文本标注对象
label.setStyle({
color: "rad",
backgroundColor: 'transparent',//文本背景色
borderColor: 'transparent',//文本框边框色
fontSize: "12px",
height: "20px",
lineHeight: "20px",
fontFamily: "微软雅黑"
});
var infoopts = {
width: 250,
height: 100,
title: mapPoints[i].title
};
var infoWindows = new BMap.InfoWindow(mapPoints[i].con, infoopts);
markerFun(points, label, infoWindows);
console.log("增加字2")
}
}
map.addEventListener("click",function(e){
console.log("x:" + e.point.lng + "," + "y:"+ e.point.lat);
});
map.addEventListener("zoomend", function(){
console.log("地图缩放至:"+this.getZoom()+"级");
});
map.addEventListener("zoomend", function(){
//alert("地图缩放至:"+this.getZoom()+"级");
if (this.getZoom()==18 && this.getOverlays().length == 0)//this.getOverlays().length如果当前覆盖物等于0,添加覆盖物,防重复添加
{
console.log("增加字1",this.getOverlays().length)
addlab (); //增加字
}
if (this.getZoom()<18)
{
map.clearOverlays();
}
});
</script>
百度地图API 手动添加文字标记
最新推荐文章于 2024-07-09 14:42:59 发布