我想获取Google map api的照片并将其插入DOM中。在文档中,根据谁编写的代码可以获取几个地方的照片并将其用作标记
function createPhotoMarker(place) {
var photos = place.photos;
if (!photos) {
return;
}
var marker = new google.maps.Marker({
map: map,
position: place.geometry.location,
title: place.name,
icon: photos[0].getUrl({'maxWidth': 35, 'maxHeight': 35})
});
}
工作得很好bur你能告诉我如何找到照片并将其插入DOM吗? 我尝试过类似的东西,但他不是那么好的方式:我的考试。抱歉我的英文不好
function callback(results, status) {
if (status === google.maps.places.PlacesServiceStatus.OK) {
for (var i = 0; i < results.length; i++) {
createMarker(results[i]);
restos.push(results[i].name);
// console.log(results[i]);
var btnSuite = document.createElement('button');
createPhoto(results[i]); //photos test !!??
btnSuite.innerHTML = '<b>' + results[i].name + '</b><br>' + results[i].vicinity + '<br>' + '<img src=' + createPhoto(results[i]) + '/>';
btnSuite.id = 'droiteBtns';
droite2.appendChild(btnSuite);
}
}
}
function createPhoto(place) {
var photos = place.photos;
if (!photos) {
return;
}
var photo = photos[0].getUrl({
'maxWidth': 150,
'maxHeight': 150
})
}
感谢您的帮助
答案 0 :(得分:0)
你可以试试这个: http://jsfiddle.net/mervinsamy/m1ejzt7j/
我做的是创建一个img对象,将图像存储在那里,然后将其添加到现有的div中。
相关HTML:
<div class="photos-section" id="img-container"></div>
相关JS:
var img = document.createElement("img") //Create object
img.src = photos[0].getUrl({'maxWidth': 100, 'maxHeight': 100}); //store image url as src attribute
document.getElementById("img-container").appendChild(img); //add to existing div