我必须使用phantomjs制作谷歌地图的截图。我动态地将几个标记传递给幻像正在执行的网页,在地图上绘制它们然后我调用map.fitBounds(bounds)
以确保地图将覆盖所有标记。问题是我必须知道何时加载地图(所有瓷砖?)所以我可以制作截图。我知道如何从幻像执行的页面到渲染脚本进行通信,但我不知道如何确保加载地图。这是我的代码:
map = new google.maps.Map(document.getElementById('map'), {
center: { lat: 0.0, lng: 0.0 },
zoom: 8
})
showMarkers = function (markers) {
markers = markers || []
var bounds = new google.maps.LatLngBounds()
for (var i = 0; i < markers.length; ++i) {
var marker = new google.maps.Marker({
position: markers[i].position,
map: map,
title: 'Hello World!'
})
bounds.extend(marker.getPosition())
}
map.fitBounds(bounds)
// for now I set 1 sec timeout, but it is not always enough and I capture gray map with markers (no tiles loaded)
setTimeout(function () {
console.log('mapReady')
}, 1000)
}
答案 0 :(得分:1)
由于@Timur建议“空闲”事件是我需要的,但是我必须添加一些额外的代码才能使它在PhantomJs中正常工作:
var fitBoundsExecuted = false
google.maps.event.addListener(map, 'idle', function () {
if (!fitBoundsExecuted) { return }
fitBoundsExecuted = false
setTimeout(function () {
console.log('mapReady')
}, 1)
})
map.fitBounds(bounds)
fitBoundsExecuted = true