1

我正在将谷歌地图插入我的页面。我直接使用了这篇文章中的代码:这里 更改了坐标和缩放。但是在我的页面上,增加/减少滑块没有像原始帖子中给出的屏幕截图示例那样显示。

  <script type="text/javascript">
var locations = [
  ['Lil Builders',  40.845816, -73.168143, 1],
];

var map = new google.maps.Map(document.getElementById('map'), {
  zoom: 14,
  center: new google.maps.LatLng(40.845816, -73.168143),
  mapTypeId: google.maps.MapTypeId.ROADMAP
});

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

var marker, i;

for (i = 0; i < locations.length; i++) {  
  marker = new google.maps.Marker({
    position: new google.maps.LatLng(locations[i][2], locations[i][3]),
    map: map
  });

  google.maps.event.addListener(marker, 'click', (function(marker, i) {
    return function() {
      infowindow.setContent(locations[i][0]);
      infowindow.open(map, marker);
    }
  })(marker, i));
}

我所看到的屏幕截图在这里在此处输入图像描述

我的直播页面在这里

关于为什么的任何想法?谢谢!!

4

1 回答 1

1

添加#map img { max-width: none; }解决了这个问题。

于 2013-08-08T14:58:28.003 回答