$(function () {
//去掉腾讯地图右下角logo
$("#l-map").bind("DOMNodeInserted",function(e){
var tempCount = 0;
$("#l-map .smnoprint").siblings().each(function(){
tempCount++;
if(tempCount==2||tempCount==3){
$(this).remove();
}
});
});
}