【问题标题】:fusion tables map - how to display the infowindows further down on the google map?融合表地图 - 如何在谷歌地图上进一步显示信息窗口?
【发布时间】:2013-06-18 20:53:45
【问题描述】:

我使用多层融合表制作了一张地图,其中一些是去年论坛成员的帮助(谢谢!)

现在我正在重新设计它,在地图顶部上方有一个悬垂,但结果是信息窗口的顶部隐藏在悬垂之下。

我想做的是将信息窗口向下推到悬垂下方。以下是我尝试过的一些方法,但没有奏效:

** css 中的 z-index ** .googft-info-window 的 css 中的border-top 或 margin-top ** 以及 JS 中的这一行:

                  pixelOffset: e.pixelOffset (100,100)

这只会在单击标记/多边形时导致信息窗口不存在。

我认为解决方案可能在pixelOffset中,但我不是程序员,无法弄清楚如何编写代码。

这是我项目的一个非常精简的版本(仅八层中的两层),我认为它说明了问题:

        <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html xmlns:fb="http://ogp.me/ns/fb#">
<head> 
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta http-equiv="content-type" content="text/html; charset=UTF-8"> 
<html>
  <head>
    <title>layer test parklotproject</title>
<script type="text/javascript"
src="http://maps.google.com/maps/api/js?sensor=false"></script>

    <script type="text/javascript">
      function initialize() {
        var map = new google.maps.Map(document.getElementById('map-canvas'), {
          center: new google.maps.LatLng(43.651541,-79.371006),
          zoom: 9,
          mapTypeId: google.maps.MapTypeId.ROADMAP
        });

        var infoWindow = new google.maps.InfoWindow();

        // Initialize the first layer
       var firstLayer = new google.maps.FusionTablesLayer({
          query: {
            select: 'Location',
            from: '1bkYbC7wZRrvWELw96g3mcwa9mGwSI-auSu9wP70'
          },
          map: map,
          suppressInfoWindows: true
        });
        google.maps.event.addListener(firstLayer, 'click', function(e) {
          windowControl(e, infoWindow, map);
        });

        // Initialize the second layer
        var secondLayer = new google.maps.FusionTablesLayer({
          query: {
            select: 'Location',
            from: '1Zw6q0HhqWPtorfs-7FmLzP_mabUz326W_OuCTQE'
          },
          map: map,
          suppressInfoWindows: true
        });
        google.maps.event.addListener(secondLayer, 'click', function(e) {
          windowControl(e, infoWindow, map);
        });
      }

      // Open the info window at the clicked location
      function windowControl(e, infoWindow, map) {
        infoWindow.setOptions({
          content: e.infoWindowHtml,
          position: e.latLng,
          pixelOffset: e.pixelOffset
        });
        infoWindow.open(map);
      }
      google.maps.event.addDomListener(window, 'load', initialize);
    </script>
    <style type="text/css">
BODY { 
margin-top : 0px; 
margin-left : 20px; 
background-color : #ffffff; 
} 
body, td, th { 
letter-spacing : 1px; 
line-height : 140%; 
font-family : Verdana, "Trebuchet MS", Arial, Helvetica, sans-serif; 
font-size : 13px; 
} 
html {
    overflow-y: scroll; 
}
#welcomecontrols {
    position: relative;
    z-index: 20;
    width: 100%;
    opacity: .8;
background-color : #ffffff;     }
#map-canvas{
    top:10px;
    position:absolute;
    clear:none;
    z-index:1;
    padding: 0px;
    margin: 0px;
    height: 600px;
    left: 20px;
    width: 96%;
} 
.googft-info-window{
    background-color:white;
    text-align:left;
    z-index: 1000;   
    height:400px; width:590px; overflow: auto;
}
</style>     
</head>
<body> 
<div  id="welcomecontrols">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td valign="bottom">
<h1><span style="color:#333333; font-size:15px;">Welcome to</span><br>
<span style="letter-spacing:2px; color:#D2691E; font-size:22px;"><b>The Toronto Park Lot Project</b></span></h1>
</td>
<td width="10" align="right" valign="top">&nbsp;</td>
</tr>
<tr>
<td colspan="1" valign="top">
<p><b>an exploration of the earliest days of the TOWN OF YORK, founded 1793 by <nobr>John Graves Simcoe,</nobr> first Lieutenant-Governor of Upper Canada</b><br>
<i>(The Town of York was incorporated 1834 as the City of Toronto.)</i><br>
&nbsp;&nbsp;</p>
</td>
<td align="left" valign="top">&nbsp;</td>
</tr>
</table>
</div>
    <div id="map-canvas"></div>
</body>
</html>        

关于如何解决这个问题的任何建议? 谢谢你。 温迪

【问题讨论】:

    标签: javascript google-fusion-tables infowindow


    【解决方案1】:

    将高度等于悬垂高度的custom control 添加到地图的顶部控件。

    API 通常会尝试将infoWindow 放置在不会被控件覆盖的位置(如果可能)

    演示:http://fiddle.jshell.net/doktormolle/EezcR/show/
    来源:http://jsfiddle.net/doktormolle/EezcR/

    【讨论】:

    • 太棒了!非常感谢。
    猜你喜欢
    • 2013-04-17
    • 2016-12-21
    • 2012-02-18
    • 1970-01-01
    • 1970-01-01
    • 2020-04-26
    • 2016-07-03
    • 2020-04-27
    • 2014-07-21
    相关资源
    最近更新 更多