Viglino/ol-ext

PopupFeature Hide Collaspe Button

Opened this issue · 2 comments

image

hi, i need some help to know whether am i able to disable the button in red box

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;
}

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.