Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
895 views
in Technique[技术] by (71.8m points)

css - Place a div above InfoWindow?

I'm trying to place a div above InfoWindow component from google-maps-react. I tried my code below but the InfoWindow isn't appearing :

<div>
            <div className={styles.superdiv}>
              <img
                src="/svg/e.svg"
                alt=""
                height="26"
                width="26"
                className="mr-2"
              />
              <span className={styles.superDiv}>SuperDiv</span>
            </div>
            <InfoWindow
              marker={activeMarker}
              onClose={onInfoWindowClose}
              visible={showingInfoWindow}
            >
              <div className={styles.infoWindow}>
                <p className={`m-0 ${styles.city}`}>city</p>
              </div>
            </InfoWindow>
          </div>
.superdiv{
    position: relative;
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...