We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mapbox
10.16.1
Android
@rnmapbox/maps
10.1.6
import React from 'react'; import { MapView } from '@rnmapbox/maps'; class BugReport extends React.Component { render() { return ( <MapView style={{flex: 1}} requestDisallowInterceptTouchEvent={true}> </MapView> ); } }
A runtime error occurs as soon requestDisallowInterceptTouchEvent is set.
requestDisallowInterceptTouchEvent
No response
The text was updated successfully, but these errors were encountered:
A temporal workaround is to use the onDidFinishLoadingMap callback:
<Mapbox.MapView ref={mapRef} onDidFinishLoadingMap={() => { mapRef.current?.setNativeProps({ requestDisallowInterceptTouchEvent: true, }); }} />
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Mapbox Implementation
Mapbox
Mapbox Version
10.16.1
Platform
Android
@rnmapbox/maps
version10.1.6
Standalone component to reproduce
Observed behavior and steps to reproduce
A runtime error occurs as soon
requestDisallowInterceptTouchEvent
is set.Expected behavior
No response
Notes / preliminary analysis
No response
Additional links and references
No response
The text was updated successfully, but these errors were encountered: