設定 Google 地圖 InfoWindows 的樣式
儘管文件有限,但透過一些創意的方法可以設計 Google 地圖 InfoWindows 的樣式。以下是一些可以考慮的方法:
使用 InfoBubble
InfoBubble 是一個受歡迎的庫,它提供了 InfoWindow 更靈活、更具風格的替代方案。透過包含其腳本文件,您可以輕鬆自訂InfoBubbles 的外觀:
infoBubble = new InfoBubble({ map: map, content: '<div class="mylabel">The label</div>', position: new google.maps.LatLng(-32.0, 149.0), ... });
建立自訂資訊視窗
透過擴充GOverlay 類,您可以建立一個自訂資訊窗口,並完全控制其外觀和行為。這種方法需要更多的編碼,但它允許高度靈活的樣式:
/* InfoBox class extends GOverlay and customizes the InfoWindow */ InfoBox.prototype = new google.maps.OverlayView();
使用JavaScript 修改
另一個選擇是使用動態修改InfoWindow的元素JavaScript 或jQuery:
var infoWindow = new google.maps.InfoWindow(); infoWindow.setContent('<div class="my-custom-style">...</div>');
使用樣式標記和自訂資訊視窗
此方法將InfoBubble 程式庫與自訂標記和樣式結合,以實作高度自訂的InfoWindow:
設定 InfoWindows 樣式時直接並不簡單,這些方法提供了靈活的選擇來實現您想要的美感。
以上是如何設定 Google 地圖 InfoWindows 的樣式?的詳細內容。更多資訊請關注PHP中文網其他相關文章!