arcgis javascript api中关闭infowindow或者Popup 右上角的 关闭(close)和最大化(Maximize) 按钮

使用自己定义的css 中加入 如下语句 即可通过css来不显示相关按钮

.esriPopup .actionsPane .zoomTo {
     display: none;
}
.esriPopup .titleButton.maximize {
     display: none;
}


 

猜你喜欢

转载自blog.csdn.net/stu_20052369/article/details/52120851