我确实开始了一个新的应用程序,使用QT我希望集成谷歌地图3.xx,因为2已被弃用... 我已经阅读了很多关于这个主题的内容 但我仍然有问题,我的qwebview不会滚动到缩放,鼠标拖动也不会平移。
我尝试过chrome \ 1.0技巧 我找到了一个有用的应用程序,但看起来喜欢使用api的V2。
精美的浏览器正在开发谷歌地图,但不适用于V3 api样本。 谷歌地图还在V2吗?
这是我加载的html:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<title>Google Maps</title>
<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?v=3.1&key=AIzaSyBYP5yP4W0i0fL6MKVRSA3J8-jUs2p2jfE&sensor=false"></script>
<script type="text/javascript">
function load() {
naviOptions = {
position: google.maps.ControlPosition.TOP_LEFT,
style: google.maps.NavigationControlStyle.ZOOM_PAN
}
var mapOptions = {
center: new google.maps.LatLng(-34.397, 150.644),
zoom: 8,
mapTypeId: google.maps.MapTypeId.ROADMAP,
keyboardShortcuts: true,
mapTypeControl: true,
navigationControl: true,
scrollwheel: true,
disableDoubleClickZoom: false,
navigationControlOptions: naviOptions
};
var map = new google.maps.Map(document.getElementById("map"), mapOptions);
map.setUIToDefault();
}
</script>
</head>
<body onload="load()">
<div id="map" style="width:100%; height:100%""></div>
</body>
</html>
我唯一没有尝试过的是重新编译qwebkit而没有支持触摸。任何人都有工作吗?
答案 0 :(得分:0)
http://qt-project.org/forums/viewthread/19887 将应用程序名称和版本设置为chrome 1.0可以在Windows下运行