我有这个库的问题。我正在尝试通过(onPress)从地图中获取当前中心坐标,但没有显示,
agree = async () => {
const center = await this._map.getCenter();
console.warn(center);
}
地图代码。
<MapboxGL.MapView
ref={(c) => this._map = c}
style={{ flex: 1 }}
zoomLevel={15}
centerCoordinate={[-122.084, 37.422]}>
</MapboxGL.MapView>
我正在像这样使用 onPress:
<TouchableOpacity
style={styles.button}
onPress={this.agree.bind(this)}
>
<Text style={styles.buttonText}>NYC</Text>
</TouchableOpacity>
有什么帮助吗?