我在属性查询的示例代码中对如何设置显示属性信息的相关代码<blockquote id="bubble" class="bubble">
<img id="myimg" src="./images/home_banner.jpg" width="50%" height="auto">
<h2 id="title"></h2>
<p id="des" class="word"></p>
<audio controls="controls">
<source src="./media/song.mp3" type="audio/mpeg" />
Your browser does not support the audio tag.
</audio>
</blockquote>
//添加自定义infobox
var title = document.getElementById("title");
var des = document.getElementById("des");
var myimg = document.getElementById("myimg");
//注册鼠标点击事件
viewer.pickEvent.addEventListener(function(feature){
var title = Cesium.defaultValue(feature.NAME,'');
var description = Cesium.defaultValue(feature.DES,'');
title.innerText = title;
des.innerText = description;
myimg.src = "./images/" + title + ".jpg";这两段代码应该如何调试成自己的东西,在这两端代码中什么位置调试