所以我试图为mapbox设置我的初始中心坐标,所以它们不是0,0。在 api 上它说 mapbox 需要一个道具
initialCenterCoordinate object Optional Initial latitude/longitude the map will load at. { latitude:0, longitude: 0 }
所以我在做
<Mapbox
initialCenterCoordinate={latitude: 40.444328, longitude: -79.953155} .... other props/>
这在该行上给了我一个错误,说意外令牌,期待}。
每当我做类似的事情时
<Mapbox
initialCenterCoordinate={{latitude: 40.444328, longitude: -79.953155}} .... other props/>
它仍然将我的初始位置设置为 0,0。有人有想法么?
编辑:链接到 git 中心页面 - https://github.com/mapbox/react-native-mapbox-gl