我在将本地视图中的mapview添加到android中时运行了以下代码。
import React, { Component } from 'react'
import { MapView } from 'react-native-maps'
import {
AppRegistry,
StyleSheet
} from 'react-native'
export default class MapTest extends Component {
constructor() {
super();
}
render() {
return (
<MapView
style = {styles.map}
showsUserLocation = {false}
followUserLocation = {false}
zoomEnabled = {true}
/>
);
}
}
const styles = StyleSheet.create ({
map: {
height: 400,
marginTop: 80
}
})
AppRegistry.registerComponent('MapTest', () => MapTest);
但是我明白了 this错误。 我不知道如何解决。请帮忙。