Viglino / ol-ext

Cool extensions for Openlayers (ol) - animated clusters, CSS popup, Font Awesome symbol renderer, charts for statistical map (pie/bar), layer switcher, wikipedia layer, animations, canvas filters.
https://viglino.github.io/ol-ext/
Other
1.22k stars 463 forks source link

PopupFeature Hide Collaspe Button #1091

Open ngjiajunsg opened 1 month ago

ngjiajunsg commented 1 month ago

image

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

Viglino commented 1 month ago

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 1 month ago

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.