Matthias Schwarz

Results 7 comments of Matthias Schwarz

Was this change intended? This breaks our PATCH requests as we distinguish between undefined and null in the api.

For me, the error is fixed when i use `disablePortal` on the `SwipeableDrawer`.

I would prefer it when the provider could be specified by the `WatcherOptions`. As default should the Fused Location Provider be used.

Is this pull request related to #298? If this is the case, this implementation would, at least for Android and the web, only pause and resume the barcode scan, but...

Since there is no intended way to determine the current mouse position without using the mouse events. There is no solution that only encapsulates the popup class. The current mouse...

It's not possible in the public api to provide an initial location for a pointer-tracked popup. Due to this check: https://github.com/maplibre/maplibre-gl-js/blob/c3deeda15986c70a5ac8e03eb2a6425d69e686ab/src/ui/popup.ts#L621 A cursor is expected which only comes from the...

I found a workaround to provide an initial location. Calling `trackPointer` after adding the popup to the map allows to use an initial location. ```js popup .setLngLat(e.lngLat) .addTo(map) .trackPointer(); ```...