﻿//将商家定位在地图上并显示
function showActualInMap(lon,lat,id, name, address, phone) {
    showInMap(lon,lat,id);
    //替换内容
    $("#companyName1").html(name);
    $("#companyName2").html(name);
    $("#address").html(address);
    $("#phone").html(phone);
    $('#msg_map').css("top", (((id) * 200)+100 )+ "px");
}
