-
-
Notifications
You must be signed in to change notification settings - Fork 906
Open
Labels
bug 🪲Something isn't workingSomething isn't working
Description
Mapbox Implementation
Mapbox
Mapbox Version
10.1.39
React Native Version
0.79.5
Platform
iOS
@rnmapbox/maps
version
10.0.0-beta.11
Standalone component to reproduce
import React from 'react';
import {
MapView,
PointAnnotation,
ShapeSource,
LineLayer,
Camera,
} from '@rnmapbox/maps';
import {Image} from 'react-native'
import MarkerImage from '@/assets/images/marker.png';
class BugReportExample extends React.Component {
render() {
return (
<MapView style={{flex: 1}}>
<PointAnnotation
coordinate={[0, 0]}
id={'id'}
>
<Image
style={{width: 30, height: 30}}
source={MarkerImage}
/>
</PointAnnotation>
</MapView>
);
}
}
Observed behavior and steps to reproduce
I can drag the PointAnnotation even if the props saids the oposite
Expected behavior
Must still fixed in the map no matter what gesture we make
Notes / preliminary analysis
No response
Additional links and references
No response
plexxispbracken
Metadata
Metadata
Assignees
Labels
bug 🪲Something isn't workingSomething isn't working