如何在react-native-maps上添加标记。对于初学者来说,文档不够清晰

时间:2018-06-09 09:38:34

标签: react-native react-native-android react-native-ios native-base react-native-maps

如果代码看起来像这样,我们如何在特定区域添加标记?对于初学者来说,文档还不够明确。

<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>

如何将其包含在此代码中?

1 个答案:

答案 0 :(得分:0)

&#13;
&#13;
<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;
&#13;
&#13;

你必须将标记放在mapview中并传递 您想要放置标记的位置的经度 - 经度