React-Native-Maps无法设置“title”属性

时间:2018-02-02 17:56:32

标签: google-maps react-native react-native-maps

对于我的MapMarker,我不想要图像,我想要文本(我指定的建筑物编号)。有什么建议???在Google API文档和本机代码中,我可以看到定义为“字符串”的Title属性。但是,当在MapMarker中为一个值设置道具“标题”时,它永远不会出现在地图上。

1 个答案:

答案 0 :(得分:0)

如果您的目标是开发人员文本自定义标记,您可以尝试:



    <MapView.Marker  coordinate={marker.coordenates}>
        <View style={styles.markerContainer}>
            <Text style={styles.text}>
                write the text
            </Text>
        </View>
    </MapView.Marker>