gpt4 book ai didi

javascript - PyQt4 webkit - 谷歌地图标记未加载

转载 作者:行者123 更新时间:2023-11-29 23:31:47 28 4
gpt4 key购买 nike

我有一个在 QWebView 中加载谷歌地图的简单示例。这是 Python 代码:

#!/usr/bin/env python

import sys
from PyQt4.QtCore import *
from PyQt4.QtGui import *
from PyQt4.QtWebKit import *
import os
app = QApplication(sys.argv)

web = QWebView()
web.settings().setAttribute(QWebSettings.JavascriptEnabled, True)
tempPath = "file:///" + os.path.join(os.getcwd(), "simple.html").replace('\\','/')
print tempPath
web.load(QUrl(tempPath))
web.show()

sys.exit(app.exec_())

这是 *simple.html* 中的代码

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>Google Maps Multiple Markers</title>
<script src="http://maps.google.com/maps/api/js?sensor=false"
type="text/javascript"></script>
</head>
<body>
<div id="map" style="width: 500px; height: 400px;"></div>

<script type="text/javascript">
var locations = [
['Bondi Beach', -33.890542, 151.274856, 4],
['Coogee Beach', -33.923036, 151.259052, 5],
['Cronulla Beach', -34.028249, 151.157507, 3],
['Manly Beach', -33.80010128657071, 151.28747820854187, 2],
['Maroubra Beach', -33.950198, 151.259302, 1]
];

var map = new google.maps.Map(document.getElementById('map'), {
zoom: 10,
center: new google.maps.LatLng(-33.92, 151.25),
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][1], locations[i][2]),
map: map
});

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

问题是标记没有加载到 QWebView 中,正如您所看到的,它们在浏览器中加载得很好。附言。这个问题是在 windows 上,它不会发生在 linux 上。 Screenshot when I run the example on windows

知道如何解决这个问题吗?


更新:调试后,我在 javascript 控制台中收到此错误

TypeError: 'undefined' is not a function (evaluating 'this.G.bind(this)') in marker.js:51

最佳答案

聚会也迟到了,但我遇到了完全相同的问题,但使用的是 wkhtmltopdf(也使用 QTWeb)。 this.G.bind 错误的发生是因为 QTWeb 不支持 'bind'

这一定是在谷歌地图最近强制升级时引入的,我想我以前使用的版本是 3.29。无论如何,如果您将此 polyfill 添加到页面顶部,它应该可以解决您的问题

<script>
// PhantomJS/QTWeb does not support bind
Function.prototype.bind = Function.prototype.bind || function(thisp) {
var fn = this;
return function() {
return fn.apply(thisp, arguments);
};
};
</script>

关于javascript - PyQt4 webkit - 谷歌地图标记未加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47059817/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com