莱信APP下载是做什么用的,莱信推广奖励怎么算的

给标注覆盖物编号问题_百度地图api吧_百度贴吧
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&签到排名:今日本吧第个签到,本吧因你更精彩,明天继续来努力!
本吧签到人数:0成为超级会员,使用一键签到本月漏签0次!成为超级会员,赠送8张补签卡连续签到:天&&累计签到:天超级会员单次开通12个月以上,赠送连续签到卡3张
关注:5,676贴子:
给标注覆盖物编号问题收藏
现在查询周边的餐饮,美食等,现在能够查到,并且都以覆盖物的形式出现在地图上。现在想给这些覆盖物进行编号,例如取最近的十条进行编号,请问如何做到,谢谢
登录百度帐号推荐应用百度地图API求助:多个楼盘自定义覆盖物循环出来。(循环,循环····)
来源:博客园
【菜鸟我又来了。。。
我的求助:因为网站需要在一个地图页面(地图找房)。列出所有楼盘,点击覆盖物弹出更详细的内容框。目前从数组中循环出了多个覆盖物和信息框,但不知道怎么关联起来····急。。大谢!
目前已经完成效果图:
&!DOCTYPE html&&html&&head&&meta http-equiv="Content-Type" content="text/ charset=utf-8" /&&style type="text/css"&body, html,#allmap {width: 100%;height: 100%;overflow:margin:0;}#l-map{height:100%;width:78%;float:border-right:2px solid #}#r-result{height:100%;width:20%;float:}&/style&&script type="text/javascript" src ="//api./api?v=1.2&ak=CB2ede775afeb6e413abd"&&/script&&title&添加自定义覆盖物&/title&
&style type="text/css"& *{margin:0; padding:0; } .q_MapInfo{ overflow: } .q_MapInfo h4{ line-height:25 color:#2b2b2b; border-bottom:1px solid #999; font-size:12 margin-bottom:5 font-weight: } .q_infos{ overflow: } .q_infos:after{ display: visibility: font-size:0; height:0; content:""; clear: } *html .q_infos{zoom:1;} *html+first-child .q_infos{zoom:1;}
.q_infoLeft{ float: width:200 font-size:12 line-height:30 } .q_infoLeft p{ line-height:30 } .q_infoLeft a{ text-decoration: color:#2b2b2b;
.q_infoLeft a:hover{ color: } .q_infoRight{ float: width:100 height:75 } .q_infoRight img{ display: width:100 height:75 overflow: } .q_infoBot{ border-top:1px solid #999; } .q_infoBot p{ line-height:30 } .q_infoBot em{ font-size:24 font-style: color: }&/style&&/head&&body&&div id="allmap"&&/div&&/body&&/html&&script type="text/javascript"&var mp = new BMap.Map("allmap");mp.addControl(new BMap.OverviewMapControl()); //添加默认缩略地图控件mp.addControl(new BMap.OverviewMapControl({isOpen:true, anchor: BMAP_ANCHOR_BOTTOM_RIGHT})); //右下角,打开mp.addControl(new BMap.ScaleControl()); // 添加默认比例尺控件mp.addControl(new BMap.ScaleControl({anchor: BMAP_ANCHOR_BOTTOM_LEFT})); // 左下mp.addControl(new BMap.NavigationControl()); //添加默认缩放平移控件mp.addControl(new BMap.NavigationControl({anchor: BMAP_ANCHOR_TOP_LEFT, type: BMAP_NAVIGATION_CONTROL_SMALL})); //右上角,仅包含平移和缩放按钮var point=new BMap.Point(110..559595);mp.centerAndZoom(point, 15);mp.enableScrollWheelZoom();// 复杂的自定义覆盖物 function ComplexCustomOverlay(point, text, mouseoverText){ this._point = this._text = this._overText = mouseoverT } ComplexCustomOverlay.prototype = new BMap.Overlay(); ComplexCustomOverlay.prototype.initialize = function(map){ this._map = var div = this._div = document.createElement("div"); div.style.position = "absolute"; div.style.zIndex = BMap.Overlay.getZIndex(this._point.lat); div.style.background = "url(blue.gif) repeat-x 0 -33px"; div.style.color = "white"; div.style.height = "21px"; div.style.padding = "2px"; div.style.lineHeight = "18px"; div.style.whiteSpace = "nowrap"; div.style.MozUserSelect = "none"; div.style.fontSize = "12px" var span = this._span = document.createElement("span"); div.appendChild(span); span.appendChild(document.createTextNode(this._text));
var that =
var arrow = this._arrow = document.createElement("div"); arrow.style.background = "url(blue.gif) no-repeat -8px -100px"; arrow.style.position = "absolute"; arrow.style.width = "30px"; arrow.style.height = "12px"; arrow.style.top = "19px"; arrow.style.left = "10px"; arrow.style.overflow = "hidden"; div.appendChild(arrow); var leftBar = this._leftBar = document.createElement("div"); leftBar.style.background = "url(blue.gif) no-repeat -12px -2px"; leftBar.style.position = "absolute"; leftBar.style.width = "11px"; leftBar.style.height = "24px"; leftBar.style.top = "0px"; leftBar.style.left = "-10px"; leftBar.style.overflow = "hidden"; div.appendChild(leftBar);
var rightBar = this._rightBar = document.createElement("div"); rightBar.style.background = "url(blue.gif) no-repeat -22px -2px"; rightBar.style.position = "absolute"; rightBar.style.width = "11px"; rightBar.style.height = "24px"; rightBar.style.top = "0px"; rightBar.style.right = "-10px"; rightBar.style.overflow = "hidden"; div.appendChild(rightBar);
div.onmouseover = function(){ this.style.background = "url(blue2.gif) repeat-x 0 -33px"; this.getElementsByTagName("span")[0].innerHTML = that._overT arrow.style.background = "url(blue2.gif) no-repeat -8px -100px"; leftBar.style.background = "url(blue2.gif) no-repeat -12px -2px"; rightBar.style.background = "url(blue2.gif) no-repeat -22px -2px"; }
div.onmouseout = function(){ this.style.background = "url(blue.gif) repeat-x 0 -33px"; this.getElementsByTagName("span")[0].innerHTML = that._ arrow.style.background = "url(blue.gif) no-repeat -8px -100px"; leftBar.style.background = "url(blue.gif) no-repeat -12px -2px"; rightBar.style.background = "url(blue.gif) no-repeat -22px -2px"; }
mp.getPanes().labelPane.appendChild(div); } ComplexCustomOverlay.prototype.draw = function(){ var map = this._ var pixel = map.pointToOverlayPixel(this._point); this._div.style.left = pixel.x - parseInt(this._arrow.style.left) + "px"; this._div.style.top = pixel.y - 30 + "px"; } ComplexCustomOverlay.prototype.addEventListener = function(event,fun){//点击事件 this._div['on'+event] = } //复杂物添加完后,我们该定义一下信息窗口了
function createInfoWindow(i){ var json = markerArr[i]; var iw = Window("&b class='iw_poi_title' title='" + json.title + "'&" + json.title + "&/b&&p style=\"padding-top:8\"&&hr&&/p&&div class='iw_poi_content'&"+json.content+"&/div&"); } //var sContent ="&div class='q_MapInfo'&&h4&楼盘标题&/h4&&div class='q_infos'&&div class='q_infoLeft'&&p&起价:11000元/平米&/p&&p&地址:文昌市清澜高隆湾旅游大道经纬花园&/p&&a href='#' target='_blank'&查看楼盘详细&&&/a&&/div&&div class='q_infoRight'&&img src='images/a.jpg' /&&/div&&/div&&div class='q_infoBot'&&p&楼盘销售电话(售楼处工作时间:24小时)&/p&&em&&/em&&/div&&/div&" // var infoWindow = Window(sContent); // 创建信息窗口对象 //下面开始尝试数组 var markerArr = [{title:"绿岛",content:'&div style="float:width:120"&起价:6800 元/平米&br&&br&&span style="line-height:20display:inlin-"&地址:文昌市清澜开发区文清大道北侧(椰子大观园对面)&/span& &br&&br&&a href="/House-show?id=8"&查看楼盘详细&&&/a&&/div&&div style="float:width:80"&&img src="/Uploads/House/201302/s_510cbb671095a.jpg" wdith="80px" height="75px"&&/div&',point:'110..558234',isOpen:0,icon:{w:21,h:21,l:0,t:0,x:6,lb:5}},{title:"中南.森海湾",content:'&div style="float:width:120"&起价:7600 元/平米&br&&br&&span style="line-height:20display:inlin-"&地址:海南省文昌市高隆湾旅游大道&/span& &br&&br&&a href="/House-show?id=12"&查看楼盘详细&&&/a&&/div&&div style="float:width:80"&&img src="/Uploads/House/201301/s_5bdb.jpg" wdith="80px" height="75px"&&/div&',point:'110..548253',isOpen:0,icon:{w:21,h:21,l:0,t:0,x:6,lb:5}},{title:"天御湾",content:'&div style="float:width:120"&起价:4200 元/平米&br&&br&&span style="line-height:20display:inlin-"&地址:文昌市文航路&/span& &br&&br&&a href="/House-show?id=13"&查看楼盘详细&&&/a&&/div&&div style="float:width:80"&&img src="/Uploads/House/201301/s_5a2e.jpg" wdith="80px" height="75px"&&/div&',point:'|',isOpen:0,icon:{w:21,h:21,l:0,t:0,x:6,lb:5}},{title:"观澜雅苑",content:'&div style="float:width:120"&起价:5000 元/平米&br&&br&&span style="line-height:20display:inlin-"&地址:文昌市清澜开发区文清大道&/span& &br&&br&&a href="/House-show?id=23"&查看楼盘详细&&&/a&&/div&&div style="float:width:80"&&img src="/Uploads/House/201301/s_51089f4bdf251.jpg" wdith="80px" height="75px"&&/div&',point:'110..555305',isOpen:0,icon:{w:21,h:21,l:0,t:0,x:6,lb:5}},{title:"海拓澜湾",content:'&div style="float:width:120"&起价:10800 元/平米&br&&br&&span style="line-height:20display:inlin-"&地址:文昌市高隆湾旅游大道&/span& &br&&br&&a href="/House-show?id=15"&查看楼盘详细&&&/a&&/div&&div style="float:width:80"&&img src="/Uploads/House/201301/s_b.jpg" wdith="80px" height="75px"&&/div&',point:'110..528834',isOpen:0,icon:{w:21,h:21,l:0,t:0,x:6,lb:5}},{title:"东方·龙湾",content:'&div style="float:width:120"&起价:11000 元/平米&br&&br&&span style="line-height:20display:inlin-"&地址:文昌市文清大道与商贸大道交汇处(文昌市财政局北侧)&/span& &br&&br&&a href="/House-show?id=16"&查看楼盘详细&&&/a&&/div&&div style="float:width:80"&&img src="/" wdith="80px" height="75px"&&/div&',point:'110..529311',isOpen:0,icon:{w:21,h:21,l:0,t:0,x:6,lb:5}},{title:"龙禧湾偶寓",content:'&div style="float:width:120"&起价:0 元/平米&br&&br&&span style="line-height:20display:inlin-"&地址:文昌市清澜开发区文府大道星蓝湾销售部(市政往南200米)&/span& &br&&br&&a href="/House-show?id=18"&查看楼盘详细&&&/a&&/div&&div style="float:width:80"&&img src="/Uploads/House/201301/s_5.jpg" wdith="80px" height="75px"&&/div&',point:'110..542496',isOpen:0,icon:{w:21,h:21,l:0,t:0,x:6,lb:5}},{title:"白金海岸",content:'&div style="float:width:120"&起价:9600 元/平米&br&&br&&span style="line-height:20display:inlin-"&地址:文昌市清澜高隆湾旅游大道一环西白金海岸酒店2号楼一层大厅&/span& &br&&br&&a href="/House-show?id=19"&查看楼盘详细&&&/a&&/div&&div style="float:width:80"&&img src="/Uploads/House/201301/s_e0.jpg" wdith="80px" height="75px"&&/div&',point:'110..542291',isOpen:0,icon:{w:21,h:21,l:0,t:0,x:6,lb:5}},{title:"蓝湖海韵",content:'&div style="float:width:120"&起价:7600 元/平米&br&&br&&span style="line-height:20display:inlin-"&地址:海南省文昌市清澜开发区惠民路段北侧(现市委市政府旁)&/span& &br&&br&&a href="/House-show?id=20"&查看楼盘详细&&&/a&&/div&&div style="float:width:80"&&img src="/Uploads/House/201301/s_5107afef650a3.jpg" wdith="80px" height="75px"&&/div&',point:'110.826',isOpen:0,icon:{w:21,h:21,l:0,t:0,x:6,lb:5}},{title:"椰海明珠",content:'&div style="float:width:120"&起价:6980 元/平米&br&&br&&span style="line-height:20display:inlin-"&地址:文昌清澜开发区商贸大道南侧(检察院旁边)&/span& &br&&br&&a href="/House-show?id=21"&查看楼盘详细&&&/a&&/div&&div style="float:width:80"&&img src="/Uploads/House/201302/s_510e428b11dfc.jpg" wdith="80px" height="75px"&&/div&',point:'110..555509',isOpen:0,icon:{w:21,h:21,l:0,t:0,x:6,lb:5}},{title:"鑫源锦程",content:'&div style="float:width:120"&起价:6300 元/平米&br&&br&&span style="line-height:20display:inlin-"&地址:文昌市文城镇文清大道289-1号(市人民法院附近)&/span& &br&&br&&a href="/House-show?id=24"&查看楼盘详细&&&/a&&/div&&div style="float:width:80"&&img src="/Uploads/House/201301/s_57.jpg" wdith="80px" height="75px"&&/div&',point:'110..559222',isOpen:0,icon:{w:21,h:21,l:0,t:0,x:6,lb:5}},{title:"左城右海",content:'&div style="float:width:120"&起价:43000 元/平米&br&&br&&span style="line-height:20display:inlin-"&地址:文昌市文城镇文蔚路(市就业局对面)&/span& &br&&br&&a href="/House-show?id=25"&查看楼盘详细&&&/a&&/div&&div style="float:width:80"&&img src="/Uploads/House/201302/s_5.jpg" wdith="80px" height="75px"&&/div&',point:'110..591205',isOpen:0,icon:{w:21,h:21,l:0,t:0,x:6,lb:5}},{title:"天水星河",content:'&div style="float:width:120"&起价:6200 元/平米&br&&br&&span style="line-height:20display:inlin-"&地址:海南省文昌市文航大道南侧&/span& &br&&br&&a href="/House-show?id=26"&查看楼盘详细&&&/a&&/div&&div style="float:width:80"&&img src="/" wdith="80px" height="75px"&&/div&',point:'110..637107',isOpen:0,icon:{w:21,h:21,l:0,t:0,x:6,lb:5}},{title:"月亮城",content:'&div style="float:width:120"&起价:6600 元/平米&br&&br&&span style="line-height:20display:inlin-"&地址:文昌文城镇文航路中段&/span& &br&&br&&a href="/House-show?id=27"&查看楼盘详细&&&/a&&/div&&div style="float:width:80"&&img src="/Uploads/House/201302/s_510e3eaf02758.jpg" wdith="80px" height="75px"&&/div&',point:'110..636834',isOpen:0,icon:{w:21,h:21,l:0,t:0,x:6,lb:5}},{title:"同仁.红椰湾",content:'&div style="float:width:120"&起价:7000 元/平米&br&&br&&span style="line-height:20display:inlin-"&地址:文昌市文清大道旁&/span& &br&&br&&a href="/House-show?id=28"&查看楼盘详细&&&/a&&/div&&div style="float:width:80"&&img src="/" wdith="80px" height="75px"&&/div&',point:'|',isOpen:0,icon:{w:21,h:21,l:0,t:0,x:6,lb:5}},{title:"天成.夏湾拿",content:'&div style="float:width:120"&起价:7680 元/平米&br&&br&&span style="line-height:20display:inlin-"&地址:文昌市清澜开发区惠民路16号&/span& &br&&br&&a href="/House-show?id=29"&查看楼盘详细&&&/a&&/div&&div style="float:width:80"&&img src="/Uploads/House/201302/s_510e3e24d319e.jpg" wdith="80px" height="75px"&&/div&',point:'110..551353',isOpen:0,icon:{w:21,h:21,l:0,t:0,x:6,lb:5}},{title:"平海.逸龙湾",content:'&div style="float:width:120"&起价:13000 元/平米&br&&br&&span style="line-height:20display:inlin-"&地址:文昌市清澜高龙湾旅游大道经纬花园&/span& &br&&br&&a href="/House-show?id=30"&查看楼盘详细&&&/a&&/div&&div style="float:width:80"&&img src="/Uploads/House/201302/s_510e3cbdb456d.jpg" wdith="80px" height="75px"&&/div&',point:'110..54362',isOpen:0,icon:{w:21,h:21,l:0,t:0,x:6,lb:5}},{title:"海拓澜湾",content:'&div style="float:width:120"&起价:10800 元/平米&br&&br&&span style="line-height:20display:inlin-"&地址:文昌市高隆湾旅游大道&/span& &br&&br&&a href="/House-show?id=31"&查看楼盘详细&&&/a&&/div&&div style="float:width:80"&&img src="/Uploads/House/201302/s_510e3aa4c8b88.jpg" wdith="80px" height="75px"&&/div&',point:'|',isOpen:0,icon:{w:21,h:21,l:0,t:0,x:6,lb:5}},{title:"宏图.高隆湾壹号",content:'&div style="float:width:120"&起价:17346 元/平米&br&&br&&span style="line-height:20display:inlin-"&地址:海南省文昌市高隆湾高隆路A号&/span& &br&&br&&a href="/House-show?id=32"&查看楼盘详细&&&/a&&/div&&div style="float:width:80"&&img src="/Uploads/House/201302/s_510e39b023579.jpg" wdith="80px" height="75px"&&/div&',point:'110..548747',isOpen:0,icon:{w:21,h:21,l:0,t:0,x:6,lb:5}},{title:"同创.美兰海岸",content:'&div style="float:width:120"&起价:8000 元/平米&br&&br&&span style="line-height:20display:inlin-"&地址:文昌市清澜开发区高隆湾白金路&/span& &br&&br&&a href="/House-show?id=33"&查看楼盘详细&&&/a&&/div&&div style="float:width:80"&&img src="/Uploads/House/201302/s_510e36e9de867.jpg" wdith="80px" height="75px"&&/div&',point:'110..550161',isOpen:0,icon:{w:21,h:21,l:0,t:0,x:6,lb:5}},{title:"阳光东海岸",content:'&div style="float:width:120"&起价:5200 元/平米&br&&br&&span style="line-height:20display:inlin-"&地址:文昌市清澜开发区商贸大道(南方电网对面)&/span& &br&&br&&a href="/House-show?id=34"&查看楼盘详细&&&/a&&/div&&div style="float:width:80"&&img src="/Uploads/House/201302/s_510e32146ea45.jpg" wdith="80px" height="75px"&&/div&',point:'110..557459',isOpen:0,icon:{w:21,h:21,l:0,t:0,x:6,lb:5}},{title:"金椰园",content:'&div style="float:width:120"&起价:5500 元/平米&br&&br&&span style="line-height:20display:inlin-"&地址:文昌文昌清澜开发区文府路(市政府旁)&/span& &br&&br&&a href="/House-show?id=35"&查看楼盘详细&&&/a&&/div&&div style="float:width:80"&&img src="/Uploads/House/201302/s_510e30c19ec19.jpg" wdith="80px" height="75px"&&/div&',point:'110..548253',isOpen:0,icon:{w:21,h:21,l:0,t:0,x:6,lb:5}},{title:"波溪利亚湾",content:'&div style="float:width:120"&起价:11700 元/平米&br&&br&&span style="line-height:20display:inlin-"&地址:文昌市清澜区文府路299号(毗邻市政府行政中心)&/span& &br&&br&&a href="/House-show?id=36"&查看楼盘详细&&&/a&&/div&&div style="float:width:80"&&img src="/Uploads/House/201302/s_510e2f4214df8.jpg" wdith="80px" height="75px"&&/div&',point:'110..536704',isOpen:0,icon:{w:21,h:21,l:0,t:0,x:6,lb:5}},{title:"海的理想",content:'&div style="float:width:120"&起价:12000 元/平米&br&&br&&span style="line-height:20display:inlin-"&地址:文昌市文府路&/span& &br&&br&&a href="/House-show?id=37"&查看楼盘详细&&&/a&&/div&&div style="float:width:80"&&img src="/" wdith="80px" height="75px"&&/div&',point:'110..519371',isOpen:0,icon:{w:21,h:21,l:0,t:0,x:6,lb:5}},{title:"八一.益园",content:'&div style="float:width:120"&起价:5600 元/平米&br&&br&&span style="line-height:20display:inlin-"&地址:文昌市清澜开发区白金路&/span& &br&&br&&a href="/House-show?id=38"&查看楼盘详细&&&/a&&/div&&div style="float:width:80"&&img src="/" wdith="80px" height="75px"&&/div&',point:'110..546771',isOpen:0,icon:{w:21,h:21,l:0,t:0,x:6,lb:5}},{title:"壹品国际",content:'&div style="float:width:120"&起价:8200 元/平米&br&&br&&span style="line-height:20display:inlin-"&地址:文昌市文城镇清澜开发区疏港大道&/span& &br&&br&&a href="/House-show?id=39"&查看楼盘详细&&&/a&&/div&&div style="float:width:80"&&img src="/Uploads/House/201304/s_516cbdaee39df.jpg" wdith="80px" height="75px"&&/div&',point:'110.774',isOpen:0,icon:{w:21,h:21,l:0,t:0,x:6,lb:5}},{title:"叠翠苑",content:'&div style="float:width:120"&起价:6980 元/平米&br&&br&&span style="line-height:20display:inlin-"&地址:文昌市清澜区文清大道(椰子大观园正对面)&/span& &br&&br&&a href="/House-show?id=40"&查看楼盘详细&&&/a&&/div&&div style="float:width:80"&&img src="/Uploads/House/201311/s_527b873ceef84.jpg" wdith="80px" height="75px"&&/div&',point:'110..557144',isOpen:0,icon:{w:21,h:21,l:0,t:0,x:6,lb:5}},{title:"金山国际",content:'&div style="float:width:120"&起价:6090 元/平米&br&&br&&span style="line-height:20display:inlin-"&地址:文昌市文府路&/span& &br&&br&&a href="/House-show?id=41"&查看楼盘详细&&&/a&&/div&&div style="float:width:80"&&img src="/Uploads/House/201304/s_b942.jpg" wdith="80px" height="75px"&&/div&',point:'110.32',isOpen:0,icon:{w:21,h:21,l:0,t:0,x:6,lb:5}},{title:"森海湾",content:'&div style="float:width:120"&起价:7600 元/平米&br&&br&&span style="line-height:20display:inlin-"&地址:海南省文昌市高隆湾旅游大道西侧&/span& &br&&br&&a href="/House-show?id=47"&查看楼盘详细&&&/a&&/div&&div style="float:width:80"&&img src="/Uploads/House/201304/s_515a.jpg" wdith="80px" height="75px"&&/div&',point:'110.287',isOpen:0,icon:{w:21,h:21,l:0,t:0,x:6,lb:5}},{title:"白金海岸",content:'&div style="float:width:120"&起价:9000 元/平米&br&&br&&span style="line-height:20display:inlin-"&地址:海南省文昌市清澜开发区高隆湾旅游大道一环西&/span& &br&&br&&a href="/House-show?id=48"&查看楼盘详细&&&/a&&/div&&div style="float:width:80"&&img src="/Uploads/House/201304/s_515eef07be8ff.jpg" wdith="80px" height="75px"&&/div&',point:'110..53851',isOpen:0,icon:{w:21,h:21,l:0,t:0,x:6,lb:5}},{title:"宏图高龙湾1号",content:'&div style="float:width:120"&起价:17346 元/平米&br&&br&&span style="line-height:20display:inlin-"&地址:海南省文昌市高隆湾高隆路A号 &/span& &br&&br&&a href="/House-show?id=49"&查看楼盘详细&&&/a&&/div&&div style="float:width:80"&&img src="/Uploads/House/201304/s_515ff7ea67ab7.jpg" wdith="80px" height="75px"&&/div&',point:'110..548219',isOpen:0,icon:{w:21,h:21,l:0,t:0,x:6,lb:5}},{title:"东方龙湾",content:'&div style="float:width:120"&起价:11000 元/平米&br&&br&&span style="line-height:20display:inlin-"&地址:文昌市文清大道与商贸大道交汇处(文昌市财政局北)&/span& &br&&br&&a href="/House-show?id=50"&查看楼盘详细&&&/a&&/div&&div style="float:width:80"&&img src="/Uploads/House/201304/s_515fd4ba30fe1.jpg" wdith="80px" height="75px"&&/div&',point:'110..535614',isOpen:0,icon:{w:21,h:21,l:0,t:0,x:6,lb:5}},{title:"乐清湾",content:'&div style="float:width:120"&起价:10000 元/平米&br&&br&&span style="line-height:20display:inlin-"&地址:海南省文昌市高隆湾旅游开发区旅游大道乐清湾营销中心&/span& &br&&br&&a href="/House-show?id=51"&查看楼盘详细&&&/a&&/div&&div style="float:width:80"&&img src="/Uploads/House/201304/s_4.jpg" wdith="80px" height="75px"&&/div&',point:'110..555611',isOpen:0,icon:{w:21,h:21,l:0,t:0,x:6,lb:5}},{title:"海拓澜湾",content:'&div style="float:width:120"&起价:10800 元/平米&br&&br&&span style="line-height:20display:inlin-"&地址:文昌市高隆湾旅游大道&/span& &br&&br&&a href="/House-show?id=52"&查看楼盘详细&&&/a&&/div&&div style="float:width:80"&&img src="/Uploads/House/201304/s_2.jpg" wdith="80px" height="75px"&&/div&',point:'110..546243',isOpen:0,icon:{w:21,h:21,l:0,t:0,x:6,lb:5}}] for (var i = 0; i & markerArr. i++) { var json=markerArr[i] var txt = markerArr[i]. var pintx = markerArr[i].point.split('|')[0]; var pinty = markerArr[i].point.split('|')[1]; mp.addOverlay(new ComplexCustomOverlay(new BMap.Point(pintx, pinty), txt, txt)); (function(){ var index = var _iw = createInfoWindow(i); //alert(mycom) //var _marker = //_marker.addEventListener("click",function(){ // mp.openInfoWindow(_iw); // }); })()
myCompOverlay.addEventListener("click", function(){ mp.openInfoWindow(infoWindow,point); }); &/script&
用到的图片:
直接用开源的富marker。然后循环遍历,直接把信息窗口当做MAP实例的事件,在当前(i)的坐标弹出。。
开源的富marker怎么用的啊。请教
donghao791031:
你好,我也在作房地产的百度地图应用,请问你有QQ吗?我有一些问题想向您请教一下,感谢,这是我的QQ号:
免责声明:本站部分内容、图片、文字、视频等来自于互联网,仅供大家学习与交流。相关内容如涉嫌侵犯您的知识产权或其他合法权益,请向本站发送有效通知,我们会及时处理。反馈邮箱&&&&。
学生服务号
在线咨询,奖学金返现,名师点评,等你来互动

我要回帖

更多关于 莱订货app 的文章

 

随机推荐