admin管理员组文章数量:1347848
I have a custom marker image and want to use a variable for the opacity of the image. I doing the following and gettin this error "Value for opacity cannot be cast from ReadableNativeMap to double"
var status=1;
<MapView.Marker
key={marker.latitude}
coordinate={{ latitude: marker.latitude, longitude: marker.longitude }}
onPress={() => this.props.Quiz2(marker.latitude, marker.longitude)} >
<View><Image source={require('../assets/icons/quiz.png')} style={{ width: 40, height: 40,opacity:status}}/></View>
</MapView.Marker>
I have a custom marker image and want to use a variable for the opacity of the image. I doing the following and gettin this error "Value for opacity cannot be cast from ReadableNativeMap to double"
var status=1;
<MapView.Marker
key={marker.latitude}
coordinate={{ latitude: marker.latitude, longitude: marker.longitude }}
onPress={() => this.props.Quiz2(marker.latitude, marker.longitude)} >
<View><Image source={require('../assets/icons/quiz.png')} style={{ width: 40, height: 40,opacity:status}}/></View>
</MapView.Marker>
Share
Improve this question
edited Aug 2, 2020 at 23:07
dev.doc
5773 gold badges12 silver badges18 bronze badges
asked Jan 20, 2019 at 1:13
MujMuj
1324 silver badges14 bronze badges
2
-
use
status = 1.0
instead. – Juorder Gonzalez Commented Jan 20, 2019 at 1:41 -
4
did you try to use
Animated.Image
instead ofImage
? – Mher Commented Apr 8, 2019 at 16:14
1 Answer
Reset to default 10You have to use <Animated.*>
e.g.
For <View>
use <Animated.View>
For <Image>
use <Animated.Image>
And so on. React Native will understand Animated.Value if it's used in Animated.*
ponent.
本文标签: javascriptValue cannot be cast from ReadableNativeMap to doubleStack Overflow
版权声明:本文标题:javascript - Value cannot be cast from ReadableNativeMap to double - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743844223a2548828.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论