如果代码看起来像这样,我们如何在特定区域添加标记?对于初学者来说,文档还不够明确。
<View style={{marginTop:20, width:null, height:200}}>
<MapView
style={{ flex: 1,width:null, height:200 }}
initialRegion={{
latitude: 37.78825,
longitude: -122.4324,
latitudeDelta: 0.0922,
longitudeDelta: 0.0421,
}}
/>
</View>
如何将其包含在此代码中?
答案 0 :(得分:0)
<View style={{marginTop:20, width:null, height:200}}>
<MapView
style={{ flex: 1,width:null, height:200 }}
initialRegion={{
latitude: 37.78825,
longitude: -122.4324,
latitudeDelta: 0.0922,
longitudeDelta: 0.0421,
}}>
<Marker coordinate={{
latitude: 37.78825,
longitude: -122.4324,}} >
</Marker>
</MapView>
</View>
&#13;
你必须将标记放在mapview中并传递 您想要放置标记的位置的经度 - 经度