0

我刚刚在我的应用程序中实现了React Native Maps

我的问题是,我在地图下方渲染的所有内容都渲染在地图之上。让我告诉你我的意思:

搜索栏和随机文本在地图上方呈现。

我的问题是如何避免我的组件被渲染在地图上?我希望它们在下面呈现。

这是我的代码:

HomeScreen.js:

render() {
    return (
      <SafeContainer>
        <KeyboardAvoidingView style={styles.container}>
          <MapsContainer />
          <SearchBar icon={require("../../assets/icons/searchingGlass.png")} />
          <Text textID={"homescreen_text"}>This is going to be the HomeScreen</Text>
          <RestaurantList />
        </KeyboardAvoidingView>
      </SafeContainer>
    );
  }

const styles = StyleSheet.create({
  container: {
    flex: 1
  }
});

MapsContainer.js:

  <View style={styles.mapContainer}>
    <MapView
      style={styles.map}
      initialRegion={{
        latitude: 58.192312,
        longitude: 7.072301,
        latitudeDelta: 0.0145,
        longitudeDelta: 0.0055
      }}
    />
  </View>

const styles = StyleSheet.create({
  mapContainer: {
    position: "absolute",
    top: 0,
    left: 0,
    right: 0,
    bottom: 0,
    height: imageWidth * (2 / 3),
    backgroundColor: colors.$primaryWhite
  },
  map: {
    position: "absolute",
    top: 0,
    left: 0,
    right: 0,
    bottom: 0
  }
});
4

2 回答 2

4

我发现我做错了什么。我在完全不需要的地方使用的地图样式(在第一次实现地图时从一些 github 问题中获得它们:D)。

以下是我现在使用的样式:

const imageWidth = Dimensions.get("window").width;
const styles = StyleSheet.create({
  mapContainer: {
    height: imageWidth * (2 / 3),
    backgroundColor: colors.$primaryWhite
  },
  map: {
    height: imageWidth * (2 / 3)
  }
});
于 2018-07-19T08:47:14.533 回答
0

您可以尝试将元素<searchBar/>或您想要的任何其他元素放在<view/>组件下。为了确保它呈现在 下方<MapsContainer/>,您应该将位置设置<view/>为相对并添加一些边距。

好吧,这是我的意思的伪代码:

主屏幕 :

    render() {
    return (
      <SafeContainer>
        <KeyboardAvoidingView style={styles.container}>
          <MapsContainer />
          <View style={styles.view1}> //nesting the element
            <SearchBar icon={require("../../assets/icons/searchingGlass.png")} />
            <Text textID={"homescreen_text"}>This is going to be the HomeScreen</Text>
            <RestaurantList />
          <View/>
        </KeyboardAvoidingView>
      </SafeContainer>
    );
  }

const styles = StyleSheet.create({
  container: {
    flex: 1
  }
  view1: {
   position: relative, //styling goes here
   marginTop: 10
)}

你可以试一试,干杯

于 2018-07-19T03:49:21.313 回答