显示InfoView React Google Maps

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了显示InfoView React Google Maps相关的知识,希望对你有一定的参考价值。

我的代码有问题。我想在单击标记时显示InfoWindow,但实际上所有标记都会自动打开(如果showInfo属性设置为false),而不是当我点击它们时。

有返回方法,因为我需要将所有这些代码放在我的组件的render方法中。

const markers = this.props.markers.map((venue, i) => {

        const marker = {

            showInfo: false,

            position: {
                lat: venue.location.lat,
                lng: venue.location.lng
            },

            name: venue.name,

            handleMarkerTap(marker) {

                if (marker.showInfo === false) {
                    marker.showInfo = true
                } else if (marker.showInfo === true) {
                    marker.showInfo = false
                }

                console.log(marker.showInfo);
            }
        };


        return(

            <Marker key={i} onClick={marker.handleMarkerTap(marker)} {...marker} >

                {marker.showInfo && (

                    <InfoWindow
                        onCloseClick={marker.handleMarkerTap(marker)} >

                            <div>
                                <b>{marker.name}</b>
                            </div>


                    </InfoWindow>
                )}

            </Marker>
        )
    });

谢谢。

答案

您是否过滤了哪个标记infowindow与id切换?你需要做这样的事情。

  onToggleInfo = id => {
    const new_locations = this.state.locations.map(
      location =>
        id === location.id
          ? { ...location, info_open: !location.info_open }
          : { ...location, info_open: false }
    );
    this.setState({ locations: new_locations });
  };

以上是关于显示InfoView React Google Maps的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 react-google-maps 显示多个标记

如何使用 React 和 Google Places API 在 Google 地图上显示地点标记?

React-Native-Maps:地图为空。仅显示 Google 徽标和标记

React-Google-Maps 显示两个标记,一个在原始位置,另一个标记跟随地图的新中心 onDrag

标记组件未显示在 React JS 中的 Google 地图上

使用 React 根据地理位置更新 Google 地图