我目前正在使用mapbox
https://github.com/mapbox/react-native-mapbox-gl学习带有地图的 react-native 我遵循地图显示的所有内容,如果我给它一个lon
并且lat
它确实在我的位置上显示了一个位置,emulator
但是问题是annotation
并且show user location
根本不显示。
有谁知道我可能会错过什么?我已经重建了几次应用程序并检查了调试是否没有错误
这是我的简单代码
export default class App extends Component {
data = [
{ id: '' }
];
render() {
return (
<View style={styles.container}>
<Mapbox.MapView
showUserLocation={true}
styleURL={Mapbox.StyleURL.Street}
zoomLevel={16}
centerCoordinate={[-123.1118716, 49.2847564]}
style={styles.container}>
</Mapbox.MapView>
<Mapbox.PointAnnotation
id='1'
title='nooooooooooooooooooooo'
coordinate={[-123.1118716, 49.2847560]}
>
</Mapbox.PointAnnotation>
</View>
);
}
}