Nice programing

Google지도에서 div를 플로팅하는 방법은 무엇입니까?

nicepro 2020. 12. 3. 19:43
반응형

Google지도에서 div를 플로팅하는 방법은 무엇입니까?


나는이 div그 표시 구글 맵을.

div지도 위에 다른 플로트를 어떻게 만들 수 div있습니까?


이 시도:

<style>
   #wrapper { position: relative; }
   #over_map { position: absolute; top: 10px; left: 10px; z-index: 99; }
</style>

<div id="wrapper">
   <div id="google_map">

   </div>

   <div id="over_map">

   </div>
</div>

#floating-panel {
  position: absolute;
  top: 10px;
  left: 25%;
  z-index: 5;
  background-color: #fff;
  padding: 5px;
  border: 1px solid #999;
  text-align: center;
  font-family: 'Roboto','sans-serif';
  line-height: 30px;
  padding-left: 10px;
}

이 상자 아래로지도를 이동하면됩니다. 나에게 일하십시오.

Google에서


div의 위치를 ​​설정하기 만하면 Z- 색인을 설정해야 할 수도 있습니다.

전의.

div#map-div {
    position: absolute;
    left: 10px;
    top: 10px;
}
div#cover-div {
    position:absolute;
    left:10px;
    top: 10px;
    z-index:3;
}

절대 위치는 악 ...이 솔루션은 창 크기를 고려하지 않습니다. 브라우저 창 크기를 조정하면 div가 제자리에 있지 않습니다!

참고 URL : https://stackoverflow.com/questions/6037712/how-to-float-a-div-over-google-maps

반응형