首页  >  文章  >  web前端  >  如何自定义 Google 地图 InfoWindows 的样式?

如何自定义 Google 地图 InfoWindows 的样式?

Patricia Arquette
Patricia Arquette原创
2024-11-05 08:09:02957浏览

How can I customize the styling of Google Maps InfoWindows?

设置 Google 地图 InfoWindows 的样式

Google 地图提供了有关设置 InfoWindows 样式的有限指南。本文探讨了自定义这些元素的技术。

InfoBubble

您可以使用 InfoBubble(InfoWindow 的替代方案)实现许多样式选项。

infoBubble = new InfoBubble({
  map: map,
  content: '<div class="mylabel">The label</div>',
  position: new google.maps.LatLng(-32.0, 149.0),
  shadowStyle: 1,
  padding: 0,
  backgroundColor: 'rgb(57,57,57)',
  borderRadius: 5,
  arrowSize: 10,
  borderWidth: 1,
  borderColor: '#2c2c2c',
  disableAutoPan: true,
  hideCloseButton: true,
  arrowPosition: 30,
  backgroundClassName: 'transparent',
  arrowStyle: 2
});
infoBubble.open();

信息窗口自定义

此脚本扩展了 GOverlay,创建了更灵活且可自定义的信息窗口。

/* An InfoBox is like an info window, but it displays
 * under the marker, opens quicker, and has flexible styling.
 * @param {GLatLng} latlng Point to place bar at
 * @param {Map} map The map on which to display this InfoBox.
 * @param {Object} opts Passes configuration options - content,
 *   offsetVertical, offsetHorizontal, className, height, width
 */
function InfoBox(opts) {
  google.maps.OverlayView.call(this);
  this.latlng_ = opts.latlng;
  this.map_ = opts.map;
  this.offsetVertical_ = -195;
  this.offsetHorizontal_ = 0;
  this.height_ = 165;
  this.width_ = 266;

  var me = this;
  this.boundsChangedListener_ =
    google.maps.event.addListener(this.map_, "bounds_changed", function() {
      return me.panMap.apply(me);
    });

  // Once the properties of this OverlayView are initialized, set its map so
  // that we can display it.  This will trigger calls to panes_changed and
  // draw.
  this.setMap(this.map_);
}

请注意,在使用信息窗口自定义时,您可能需要覆盖多个方法。

以上是如何自定义 Google 地图 InfoWindows 的样式?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn