PopupFeature Hide Collaspe Button
Opened this issue · 2 comments
ngjiajunsg commented
Viglino commented
You can style it using CSS:
/* hide fix */
.ol-popup-content .ol-fix {
display: none;
}
or just disabled
/* disable fix */
.ol-popup-content .ol-fix {
pointer-events: none;
opacity: 0.5;
}
ngjiajunsg commented
thanks Viglino for the fast reply, i implement hide fix do solve the issue.. i try also disable but seem like not working as i click it still will move to top right.