diff --git a/releases/next/docs/mapview.html b/releases/next/docs/mapview.html
index 417dd9d1c32..f73dfcb478a 100644
--- a/releases/next/docs/mapview.html
+++ b/releases/next/docs/mapview.html
@@ -270,6 +270,7 @@ class AnnotationExample extends return (
<MapView
+ showsAnnotationCallouts={this.props.showsAnnotationCallouts}
style={styles.map}
onRegionChangeComplete={onRegionChangeComplete}
region={this.state.mapRegion}
@@ -394,6 +395,29 @@ exports.examples }}/>;
}
},
+ {
+ title: 'Show callouts by default example',
+ render() {
+ return <AnnotationExample
+ style={styles.map}
+ annotation={{
+ title: 'More Info...',
+ rightCalloutView: (
+ <TouchableOpacity
+ onPress={() => {
+ alert('You Are Here');
+ }}>
+ <Image
+ style={{width:30, height:30}}
+ source={require('./uie_thumb_selected.png')}
+ />
+ </TouchableOpacity>
+ ),
+ }}
+ showsAnnotationCallouts={true}
+ />;
+ }
+ },
{
title: 'Annotation focus example',
render() {