我正在尝试在React Native' < MapView> 中旋转地图,但无法找到有关如何根据标题旋转地图的说明相机该教程指出:
当此属性设置为true且有效摄影机与地图关联时,摄像机的航向角用于围绕其中心点旋转地图平面。
所以我来到了:
<MapView
style={styles.map}
onRegionChange={this._onRegionChange}
onRegionChangeComplete={this._onRegionChangeComplete}
region={this.state.mapRegion}
annotations={this.state.annotations}
rotateEnabled={true}
但没有关于相机如何与地图相关联的解释。
有人可以帮忙解决这个问题吗?