0
추적 기반 앱 설계를 위해 airbnb/react-native-maps를 사용했습니다. 맞춤 검색 창을 설계했습니다. 하지만 문제는 검색 상자가 내 위치 버튼과 겹치는 것입니다. 내 위치 버튼을 사용자 정의하고 정렬 위치를 변경하는 방법이 있습니까? 더 많은 사양을 위해 사진을 첨부했습니다. 여기 airbnb/react-native-maps에서 내 위치 버튼 사용자 정의
내가myLocationButton
를 밀어 당신의
custom-search-box
의 높이지도의 상단에 패딩을 추가하는 것입니다
<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>
. 그러나 제 경우에는 적절하지 않습니다. 또한 myLocationButton을 사용자 정의하고 싶습니다. 도움이 필요해. – bpsourav