diff --git a/projects/ngx-maplibre-gl/src/lib/map/map.component.ts b/projects/ngx-maplibre-gl/src/lib/map/map.component.ts index 7960aa5a..cb26c289 100644 --- a/projects/ngx-maplibre-gl/src/lib/map/map.component.ts +++ b/projects/ngx-maplibre-gl/src/lib/map/map.component.ts @@ -77,6 +77,7 @@ export class MapComponent @Input() bounds?: MapOptions['bounds']; // Use fitBounds for dynamic input @Input() antialias?: MapOptions['antialias']; @Input() locale: MapOptions['locale']; + @Input() cooperativeGestures?: MapOptions['cooperativeGestures']; /* Dynamic inputs */ @Input() minZoom?: MapOptions['minZoom']; @@ -245,6 +246,7 @@ export class MapComponent fitBoundsOptions: this.fitBoundsOptions, antialias: this.antialias, locale: this.locale, + cooperativeGestures: this.cooperativeGestures, }, mapEvents: this, });