首页 / 浏览问题 / 三维GIS / 问题详情
属性查询中的属性框设置
19EXP 2020年04月30日
我在属性查询的示例代码中对如何设置显示属性信息的相关代码<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";这两段代码应该如何调试成自己的东西,在这两端代码中什么位置调试

1个回答

这两段代码,您可以这么理解:

第一段,相当于气泡的样式或者说框架结构

第二段,相当于给框架结构填入内容
5,560EXP 2020年05月06日
...