簡介php
InfoWindow
在地圖上方給定位置的彈出窗口中顯示內容(一般爲文本或圖像)。信息窗口具備一個內容區域和一個錐形柄。柄頂部與地圖上的某指定位置相連。html
一般,您會將信息窗口附加到標記,但您也能夠將信息窗口附加到特定緯度/經度,以下面的「添加信息窗口」部分所述。spring
InfoWindow
構造函數採用了 InfoWindowOptions
對象字面量,後者爲顯示信息窗口指定了一組初始參數。segmentfault
InfoWindowOptions
對象字面量包含如下字段:api
content
:其中包含要在信息窗口中顯示的本文字符串或 DOM
節點。async
pixelOffset
:其中包含從信息窗口的頂部到信息窗口錨定位置的偏移量。實際上,您不該也無需修改此字段。您能夠將其保留爲默認值。函數
position
:其中包含此信息窗口錨定位置的 LatLng
。注:InfoWindow
可附加到 Marker
對象(此狀況下,其位置取決於標記的位置),或附加到地圖自己指定的 LatLng
位置。在標記上打開信息窗口將自動更新 position
。google
maxWidth
:用於指定信息窗口的最大寬度(以像素爲單位)。默認狀況下,信息窗口會根據其中包含的內容進行擴展,若是信息窗口填滿地圖,那麼文本將會自動換行。若是您添加maxWidth
,則信息窗口將自動換行以強制適應指定的寬度。若是信息窗口達到最大寬度,但屏幕上仍有垂直空間,則信息窗口可能會垂直擴展。scala
InfoWindow
的內容可包含文本字符串、HTML 代碼段或 DOM 元素。要設置此內容,請在 InfoWindowOptions
中指定該內容,或者對 InfoWindow
顯式調用 setContent()
。rest
若是您想要顯式調整內容的大小,則可將其歸入 <div>
元素中,並使用 CSS
設置 <div>
的樣式。您還能夠使用 CSS
啓用滾動功能。請注意,若是您不啓用滾動功能,且內容超出信息窗口中可用的空間,則內容可能會溢出信息窗口。
建立信息窗口時,它不會自動顯示在地圖上。要使信息窗口可見,則需對 InfoWindow
調用 open()
方法,並向其傳遞其要在上面打開的 Map
,也能夠選擇向其傳遞其要錨定到的 Marker
。若是沒有提供任何標記,則信息窗口將在其 position
屬性指定的位置處打開。
<!DOCTYPE html> <html> <head> <meta name="viewport" content="initial-scale=1.0, user-scalable=no"> <meta charset="utf-8"> <title>Info window with <code>maxWidth</code></title> <style> html, body { height: 100%; margin: 0; padding: 0; } #map { height: 100%; } </style> </head> <body> <div id="map"></div> <script> // This example displays a marker at the center of Australia. // When the user clicks the marker, an info window opens. // The maximum width of the info window is set to 200 pixels. function initMap() { var uluru = {lat: -25.363, lng: 131.044}; var map = new google.maps.Map(document.getElementById('map'), { zoom: 4, center: uluru }); var contentString = '<div id="content">'+ '<div id="siteNotice">'+ '</div>'+ '<h1 id="firstHeading" class="firstHeading">Uluru</h1>'+ '<div id="bodyContent">'+ '<p><b>Uluru</b>, also referred to as <b>Ayers Rock</b>, is a large ' + 'sandstone rock formation in the southern part of the '+ 'Northern Territory, central Australia. It lies 335 km (208 mi) '+ 'south west of the nearest large town, Alice Springs; 450 km '+ '(280 mi) by road. Kata Tjuta and Uluru are the two major '+ 'features of the Uluru - Kata Tjuta National Park. Uluru is '+ 'sacred to the Pitjantjatjara and Yankunytjatjara, the '+ 'Aboriginal people of the area. It has many springs, waterholes, '+ 'rock caves and ancient paintings. Uluru is listed as a World '+ 'Heritage Site.</p>'+ '<p>Attribution: Uluru, <a href="https://en.wikipedia.org/w/index.php?title=Uluru&oldid=297882194">'+ 'https://en.wikipedia.org/w/index.php?title=Uluru</a> '+ '(last visited June 22, 2009).</p>'+ '</div>'+ '</div>'; var infowindow = new google.maps.InfoWindow({ content: contentString, //maxWidth: 200 }); var marker = new google.maps.Marker({ position: uluru, map: map, title: 'Uluru (Ayers Rock)' }); marker.addListener('click', function() { infowindow.open(map, marker); }); } </script> <script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDY0kkJiTPVd2U7aTOAwhc9ySH6oHxOIYM&callback=initMap"></script> </body> </html>
默認狀況下,InfoWindow
保持打開狀態,直至用戶點擊關閉控件(信息窗口右上角的叉號)。若是您須要,能夠經過調用其 close()
方法來顯式關閉信息窗口。
對信息窗口調用 setPosition()
使用 InfoWindow.open()
方法將信息窗口附加到新標記上。注:若是您調用 open()
而不傳遞標記,InfoWindow
將使用構造時經過 InfoWindowOptions
對象字面量指定的位置。
能夠參考下https://segmentfault.com/a/11...,也有信息窗口的實現。