1

私はReactネイティブに取り組んでおり、Mapbox GLライブラリを使用してマップを表示しています。Mapbox GL ビューの中央にボタンを追加したいと思います。以下は私が得ているものです。 スクリーンショット

これがコードです。

      <View style={styles.container}>

        <Mapbox.MapView
          style={{flex: 1}}
          styleURL={Mapbox.StyleURL.Dark}
          zoomLevel={15}
          centerCoordinate={[79.900424, 6.867281]}
          showUserLocation={true}
          logoEnabled={false}
          rotateEnabled={false}
          attributionEnabled={false}
          animated={true}
          style={styles.container}>
        </Mapbox.MapView>

        <View style={{width:30, backgroundColor:"transparent"}}>
          <Button title="Button"></Button>
        </View>

      </View>

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

どうすればこれを修正できますか?

4

1 に答える 1