gpt4 book ai didi

jquery - 如何在 amMap 中禁用工具提示并添加信息窗口?

转载 作者:行者123 更新时间:2023-12-01 02:54:04 24 4
gpt4 key购买 nike

我已经创建了 amMap 来绘制区域,我想禁用工具提示并在特定状态下单击时添加信息窗口。我怎样才能做到这一点。

最佳答案

如果您想禁用工具提示,请在 areasSettings 中将 balloonText 设置为空字符串。

"areasSettings": {
"balloonText": ""
}

要在单击某个州时显示描述,只需将“description”属性添加到该州的区域定义中即可:

"dataProvider": {
"map": "usaLow",
"getAreasFromMap": true,
"areas": [{
"id": "US-TX",
"description": "Texas is a large state in the southern U.S. with deserts, pine forests and the Rio Grande, a river that forms its border with Mexico. In its biggest city, Houston, the Museum of Fine Arts houses works by well-known Impressionist and Renaissance painters, while Space Center Houston offers interactive displays engineered by NASA. Austin, the capital, is known for its eclectic music scene."
}]
}

请记住还包括 ammap.css,因为描述框是使用 CSS 设计的。

这是一个工作演示:

var map = AmCharts.makeChart( "chartdiv", {
"type": "map",
"theme": "light",
"dataProvider": {
"map": "usaLow",
"getAreasFromMap": true,
"areas": [{
"id": "US-TX",
"description": "Texas is a large state in the southern U.S. with deserts, pine forests and the Rio Grande, a river that forms its border with Mexico. In its biggest city, Houston, the Museum of Fine Arts houses works by well-known Impressionist and Renaissance painters, while Space Center Houston offers interactive displays engineered by NASA. Austin, the capital, is known for its eclectic music scene."
}]
},
"areasSettings": {
"autoZoom": true,
"balloonText": ""
}
} );
#chartdiv {
width: 100%;
height: 500px;
}
<link href="http://www.amcharts.com/lib/3/ammap.css" media="all" rel="stylesheet" type="text/css" />
<script src="http://www.amcharts.com/lib/3/ammap.js"></script>
<script src="http://www.amcharts.com/lib/3/maps/js/usaLow.js"></script>
<script src="http://www.amcharts.com/lib/3/themes/light.js"></script>
<div id="chartdiv"></div>

关于jquery - 如何在 amMap 中禁用工具提示并添加信息窗口?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31483356/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com