0

我正在尝试使用react-native-maps显示地图视图。该组件似乎正在显示,但它是空白的。

在此处输入图像描述

是我的样式表还是我调用“MapView”组件对吗?

这是代码:

var MapView = require('react-native-maps');

class Map extends React.Component {
  constructor(props) {
    super(props);
    this.state = {
    }
  }

  render() {
    return (
      <View style={styles.container}>
        <MapView style={styles.map}
          initialRegion={{
              latitude: 37.78825,
              longitude: -122.4324,
              latitudeDelta: 0.0,
              longitudeDelta: 0.0,
          }}
        />
      </View>

    );
  }
};


var styles = StyleSheet.create({
 container: {
   flex: 1,
   justifyContent: 'center',
   alignItems: 'center',
   backgroundColor: '#F5FCFF',
 },
   map: {
     position: 'absolute',
     top: 0,
     left: 0,
     right: 0,
     bottom: 0,
   }
});
4

1 回答 1

1

$react-native link

从项目根目录链接 react-native-maps 与您的项目。(或者您可以按照此处列出的这些手动步骤操作:https ://github.com/airbnb/react-native-maps/blob/master/docs/installation.md#option-3-manually )

于 2016-11-21T00:43:56.907 回答