2017-09-10 20 views
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> 

enter image description here

답변

0

빠른 솔루션을 사용한 샘플 코드입니다 그 아래에.

나는 Docs으로 갔지만 위치 나 정렬을 사용자 정의 할 수있는 방법을 찾지 못했습니다.

이 6 개월 이상 전에 비슷한 솔루션을 제안하는 상승에 대한 유사한 issue in the github있다 : 그 문제를 보았다

https://github.com/airbnb/react-native-maps/issues/1094

+0

. 그러나 제 경우에는 적절하지 않습니다. 또한 myLocationButton을 사용자 정의하고 싶습니다. 도움이 필요해. – bpsourav