【发布时间】:2020-09-23 08:13:20
【问题描述】:
我正在尝试打开 Google Maps InfoWindow 以显示图像,但我想使用 javascript 变量定义图像源。
这是我使用 Flask 的 Python 代码。
import os
from flask import Flask, render_template
from flask_jsglue import JSGlue
# Start the Flask application
app = Flask(__name__)
jsglue = JSGlue(app)
# Get the Google Maps API key from the file
with open(os.getcwd() + '/data/GoogleMapsAPIkey.txt') as f:
APIkey = f.readline()
f.close
app.config['API_KEY'] = APIkey
@app.route('/')
def index():
return render_template('./test.html', key=APIkey)
if __name__ == '__main__':
app.run(debug=False)
这是我正在使用的 HTML。
<!DOCTYPE html>
<html>
<head>
<title>Thumb in window test</title>
{{ JSGlue.include() }}
<meta charset="utf-8">
<style>
#map-canvas {
width: 100%;
height: 500px;
}
</style>
</head>
<body>
<div id="map-canvas">
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script>
var map;
var thumbWindow;
function showMap(){
// Create the map
map = new google.maps.Map(document.getElementById('map-canvas'), {
center: {lat: -37.8135, lng: 144.9655},
zoom: 14
});
google.maps.event.addDomListener(map, 'click', showThumb);
}
function showThumb(){
thumbWindow = new google.maps.InfoWindow();
thumbWindow.setContent('<img id="thumb" src="/static/thumbs/2_thumb.JPG" align="middle">');
thumbWindow.setPosition(map.getCenter());
thumbWindow.open(map);
}
</script>
<script async defer src="https://maps.googleapis.com/maps/api/js?key={{ key }}&callback=showMap">
</script>
</body>
</html>
这一切都按预期工作,但前提是我在 src 中完全说明了图像 URL。
如果我用这个替换 showThumb 函数......
function showThumb(){
var number = 2;
var file = "/static/thumbs/" + number.toString() + "_thumb.JPG";
thumbWindow = new google.maps.InfoWindow();
thumbWindow.setContent('<img id="thumb" src="" align="middle">');
thumbWindow.setPosition(map.getCenter());
thumbWindow.open(map);
document.getElementById("thumb").src=file;
}
...我得到一个空的 InfoWindow 和一个 Uncaught TypeError: Cannot set property 'src' of null 错误。
似乎 Javascript 无法识别 InfoWindow 中的 id。
有人有办法让它工作吗?
【问题讨论】:
-
带有
id="thumb"的元素在DOM中不存在(直到它被添加到DOM中才能被document.getElementById找到)。在处理.open之前它不会在 DOM 中(并且在后台异步处理)
标签: javascript image google-maps-api-3 infowindow