QWebKit不处理Google Maps的click和dblclick

时间:2012-08-22 09:56:03

标签: google-maps-api-3 qwebview qwebkit

我只是在我的index.html

中从google maps API复制/粘贴此代码
<!DOCTYPE html>
<html>
  <head>
    <meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
    <style type="text/css">
      html { height: 100% }
      body { height: 100%; margin: 0; padding: 0 }
      #map_canvas { height: 100% }
    </style>
    <script type="text/javascript"
      src="http://maps.googleapis.com/maps/api/js?key=MYKEY&sensor=false">
    </script>
    <script type="text/javascript">
      function initialize() {
        var mapOptions = {
          center: new google.maps.LatLng(-34.397, 150.644),
          zoom: 8,
          mapTypeId: google.maps.MapTypeId.ROADMAP
        };
        var map = new google.maps.Map(document.getElementById("map_canvas"),
            mapOptions);
      }
    </script>
  </head>
  <body onload="initialize()">
    <div id="map_canvas" style="width:100%; height:100%"></div>
  </body>
</html>

在像chrome这样的浏览器中,每件事情都可以。我的意思是当我双击地图时它会放大。当我拖动地图时,地图的中心点会发生变化。 但是当我在QWebView对象中加载此文件时,地图会加载,但QWebView不会关注点击和双击!

0 个答案:

没有答案