我使用 airbnb/react-native-maps 来设计基于跟踪的应用程序。我设计了一个自定义搜索框。但问题是,搜索框与我的位置按钮重叠。有什么方法可以自定义我的位置按钮并更改其对齐位置?我附上了一张照片以获得更多规格。
这是我使用的示例代码
<MapView
provider={PROVIDER_GOOGLE}
style={styles.map}
region={{
latitude: this.props.initialPosition.latitude,
longitude: this.props.initialPosition.longitude,
latitudeDelta: Latitude_Delta,
longitudeDelta: Longitude_Delta
}}
zoomEnabled={true}
minZoomLevel={5}
maxZoomLevel={20}
showsMyLocationButton={true}
showsUserLocation={true}
... ... ...
>
{... ... ... ...}
</MapView>