react-native-naver-map
react-native-naver-map copied to clipboard
마커 내 커스텀 뷰 가 제대로 생성되지 않는 이슈
Version of react-native-naver-map libraries
0.0.66
Version of react-native
0.66.4
Platform
ios
Expect behavior
마커 위치에 이미지가 만들어져야 합니다.
Actual behavior
마커 위치가 아닌 화면 왼쪽 상단에 렌더링이 됩니다.
Environments
iPhone 13
Screen Shot
code
<NaverMapView style={{width: '100%', height: '100%'}}
showsMyLocationButton={false}
zoomControl={false}
locationTrackingMode={1}
center={{ latitude, longitude, zoom: 14 }}
logoGravity={1}
ref={ref}
useTextureView
>
<Circle
coordinate={{latitude, longitude}}
color="rgba(33, 87, 243, 0.15)"
radius={1000 * 1}
outlineWidth={10}
outlineColor="rgba(0,0,255,0)"
/>
<Marker coordinate={{ latitude, longitude, zoom: 14 }} width={96} height={96}>
<ImageBackground source={require("./lotto-market-low-inactive.png")} style={{width: 64, height: 64}}>
<Text>image background</Text>
</ImageBackground>
</Marker>
</NaverMapView>
미구현 기능으로 알고있습니다