$(function(){ select(); var titleText=$(".pub_year dt").text(); var titleAddress=$(".map_list li").eq(0).find("dd p").text(); $(".contact-us .year_select").eq(0).find("dd a").click(function(){ var mapx= $(this).attr("data-x"); var mapy= $(this).attr("data-y"); var titleText=$(".pub_year dt").text(); var titleAddress=$(".map_list li").eq(0).find("dd p").text(); mapInt02(mapx,mapy); }) }) function mapInt02(mapx,mapy){ var map = new BMap.Map("map"); var point = new BMap.Point(mapx,mapy); var point2 = new BMap.Point(mapx,mapy); if($(window).width()>1024){ var myIcon = new BMap.Icon("../images/address_phone.png", new BMap.Size(44,55)); }else{ var myIcon = new BMap.Icon("../images/address_phone.png", new BMap.Size(44,55)); } var marker2 = new BMap.Marker(point2,{icon:myIcon}); map.addOverlay(marker2); map.centerAndZoom(point, 18); map.enableScrollWheelZoom(); map.enableContinuousZoom(); var opts = { width : 200, // 娣団剝浼呯粣妤€褰涚€硅棄瀹 height: 40, // 娣団剝浼呯粣妤€褰涙妯哄 title : mapTitle // 娣団剝浼呯粣妤€褰涢弽鍥暯 } var infoWindow = new BMap.InfoWindow(mapAdress, opts); marker2.addEventListener("click", function(){ map.openInfoWindow(infoWindow,point); }); } function mapInt03(mapx,mapy){ var map = new BMapGL.Map('map'); var point = new BMapGL.Point(mapx,mapy); map.centerAndZoom(point, 15); // 鍒涘缓灏忚溅鍥炬爣 var myIcon = new BMapGL.Icon("../images/address_phone.png", new BMapGL.Size(44,55)); // 鍒涘缓Marker鏍囨敞锛屼娇鐢ㄥ皬杞﹀浘鏍 var pt = new BMapGL.Point(mapx,mapy); var marker = new BMapGL.Marker(pt, { icon: myIcon }); map.enableScrollWheelZoom(true); // 灏嗘爣娉ㄦ坊鍔犲埌鍦板浘 map.addOverlay(marker); } function select(){ $(".year_select").each(function (i) { $(this).find("dt").click(function (e) { if($(this).hasClass('on_o')){ $(this).removeClass('on_o'); $(this).siblings().slideUp(200); }else{ $(this).addClass('on_o'); $(this).siblings().slideDown(200); } e.preventDefault(); e.stopPropagation() $(".year_select").eq(i).find("dd a").each(function (x) { $(this).click(function () { $(".year_select").eq(i).find("dt p").addClass("cur_p") $(".year_select").eq(i).find("dd a").removeClass("on"); $(this).addClass("on"); $(".year_select").eq(i).find("dt p").text($(this).text()); $(".year_select").eq(i).find("dt").attr({"data-val":$(this).data("val")}); }) }) }) }) $(document).click(function () { $(".year_select dd").slideUp(200); $(".year_select dt").removeClass('on_o'); }) $(".year_select dt").on("click", function(e){ $(this).parents(".year_select").siblings(".year_select").children("dd").slideUp(200); $(this).parents(".year_select").siblings(".year_select").children("dt").removeClass('on_o'); }); // 鑱旂郴鎴戜滑 setTimeout(function(){ $(".select01 dd a").eq(0).click(); },200) $(".select01 dd a").click(function(){ var thistitle=$(this).text(); $(".pub_year dt p").text(thistitle); var url = $(this).data("src"); if(url == ""){ return false; }else{ caseAjax(".map_block",url) } }) } function caseAjax(str,url){ if (url.indexOf('?') == -1) { url += '?tm=' + Math.random(); } else { url += '&tm=' + Math.random(); } $.ajax({ url:url, success:function(msg){ $(str).html(""); $(str).append(msg); } }); }