|
|
|
@ -256,16 +256,24 @@ window.pathFac = function(event){ |
|
|
|
let mark = document.getElementById("mark"); |
|
|
|
mark.style.display = "flex"; |
|
|
|
document.getElementById("mapContainer").style.visibility = "visible"; |
|
|
|
let nodeObject = Map_QM.pathIcon({"type":event.target.dataset.num}); |
|
|
|
Map_QM.pathNode(nodeObject,()=>{ |
|
|
|
|
|
|
|
}); |
|
|
|
try{ |
|
|
|
let nodeObject = Map_QM.pathIcon({"type":event.target.dataset.num}); |
|
|
|
Map_QM.pathNode(nodeObject,()=>{ |
|
|
|
|
|
|
|
}); |
|
|
|
}catch(e){ |
|
|
|
console.log(e); |
|
|
|
} |
|
|
|
mark.addEventListener("click", ()=>{ |
|
|
|
mark.style.display = "none"; |
|
|
|
document.getElementById("mapContainer").style.visibility = "hidden"; |
|
|
|
Map_QM.showFloor(0); |
|
|
|
window.isplayHello = true; |
|
|
|
window.hello(); |
|
|
|
try{ |
|
|
|
mark.style.display = "none"; |
|
|
|
document.getElementById("mapContainer").style.visibility = "hidden"; |
|
|
|
Map_QM.showFloor(0); |
|
|
|
window.isplayHello = true; |
|
|
|
window.hello(); |
|
|
|
}catch(e){ |
|
|
|
console.log(e); |
|
|
|
} |
|
|
|
}) |
|
|
|
} |
|
|
|
// 导航店铺
|
|
|
|
@ -275,16 +283,24 @@ window.pathFun = function(event){ |
|
|
|
let mark = document.getElementById("mark"); |
|
|
|
mark.style.display = "flex"; |
|
|
|
document.getElementById("mapContainer").style.visibility = "visible"; |
|
|
|
let nodeObject = Map_QM.shopNumToNavPoint({"houseNumber":event.target.dataset.num},"shop"); |
|
|
|
Map_QM.pathNode(nodeObject,()=>{ |
|
|
|
|
|
|
|
}); |
|
|
|
try{ |
|
|
|
let nodeObject = Map_QM.shopNumToNavPoint({"houseNumber":event.target.dataset.num},"shop"); |
|
|
|
Map_QM.pathNode(nodeObject,()=>{ |
|
|
|
|
|
|
|
}); |
|
|
|
}catch(e){ |
|
|
|
console.log(e); |
|
|
|
} |
|
|
|
mark.addEventListener("click", ()=>{ |
|
|
|
mark.style.display = "none"; |
|
|
|
document.getElementById("mapContainer").style.visibility = "hidden"; |
|
|
|
Map_QM.showFloor(0); |
|
|
|
window.isplayHello = true; |
|
|
|
window.hello(); |
|
|
|
try{ |
|
|
|
mark.style.display = "none"; |
|
|
|
document.getElementById("mapContainer").style.visibility = "hidden"; |
|
|
|
Map_QM.showFloor(0); |
|
|
|
window.isplayHello = true; |
|
|
|
window.hello(); |
|
|
|
}catch(e){ |
|
|
|
console.log(e); |
|
|
|
} |
|
|
|
}) |
|
|
|
} |
|
|
|
//点击优惠券弹窗
|
|
|
|
|