谷歌地图与Api 3没有在移动设备上显示即

时间:2015-03-28 16:37:20

标签: google-maps internet-explorer mobile google-maps-api-3

我已经使用Google Api 3实现了一张地图,它在每个浏览器,Android和ios手机上都可以正常使用。但不是在带有手机的Windows 8.1手机上。 它甚至没有显示 - 只是一个空页:-( 我在谷歌和这里搜索过,但发现只有2013年的帖子说,Windows手机和GoogleMaps存在问题。但没什么新鲜的。只有我有这个问题吗?这是我的代码:

<!-- call api funktions -->
<script>
  function initialize() {
    var mapOptions = {
      center: new google.maps.LatLng(50.2014, 8.5804 ),
      zoom: 16,
      mapTypeId: google.maps.MapTypeId.ROADMAP,
      scrollwheel: false,
      panControl: true,
      draggable: false
    };
    var map = new google.maps.Map(document.getElementById("map_canvas"),
      mapOptions);
    var marker = new google.maps.Marker({
      map: map,
      position: new google.maps.LatLng(50.2014, 8.5804 ),
      title:"Schmerzzentrum"
    });
    var contentString = '<div id="mapinfo_box" style="color:#666;max-width:280px;">'+
    '<h1 id="mapinfo_h1">Schmerzzentrum</h1>'+
    '<div id="mapinfo_body">'+
    '<p style="font-size:16px;margin-bottom:15px;">Rathausplatz 6 <br />61440 Oberursel (Taunus)</p>'+
    '</div>';
    var infowindow = new google.maps.InfoWindow({
    content: contentString
    });
    google.maps.event.addListener(marker, 'click', function() {
      infowindow.open(map,marker);
    });
  }

  google.maps.event.addDomListener(window, 'resize', initialize);
  google.maps.event.addDomListener(window, 'load', initialize)
</script>

我已经测试了其他一些带有GoogleMap的网页,并从移动设备获得安全警告。当我点击“忽略并访问页面”时,没有任何反应。在这个页面我得到:没有。代码在WordPress header.php中实现。 有人可以帮忙吗? 非常感谢!

1 个答案:

答案 0 :(得分:0)

我认为可能是因为样式表。

根据this website

IE needs to know the size of the map ensure that it has been set

它应该是关于样式表的东西。但不知怎的,我无法重现它。我从你的代码中创建了一个demo,我添加了样式表并以某种方式运行,所以我猜这可能是问题所在。

enter image description here