-
-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
Some markers appear on top left of mapview when moving the map but these markers have already rendered in specific coordinate correctly
var makers = annotations.map((annotation, i) => {
return(
<MapView.Marker
key={i}
coordinate={{
longitude: annotation.longitude,
latitude: annotation.latitude,
}}
image={annotation.image}
/>
)
});
<MapView
ref={ref => { this.map = ref; }}
initialRegion={this.state.region}
followUserLocation={false}
showsMyLocationButton={false}
style={{
width: screenWidth * 0.8,
height: screenHeight / 9 * 7,
}}
maxDelta={0.01}
showsUserLocation={true}
>
{makers}
</MapView>
IOS
react-native-maps 0.10.1
RN 0.33
zzimbler, alexkirsz, silurt, carleryd, alyon and 9 more
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working