我正在制作一个带有反应的谷歌地图,我对placeId的显示结果有问题。我有这段代码:
<Marker
{...marker}
key={i}
position={marker.location}
title={marker.title}
icon={'icons/' + marker.type + '.png'}
onClick={() => {
props.toggleLocationsActive(i);
}}
//animation={DROP}
>
{i === props.activeKey && (
geocodeByPlaceId(marker.place_id)
.then(results => {
const address = results[0].formatted_address;
console.log(address);
})
.catch(error => console.error(error)),
<InfoWindow onCloseClick={props.onToggleOpen}>
<div>{ marker.title }</div>
</InfoWindow>)}
</Marker>
我想在InfoWindow中显示从这个placeId获取的地址 - 显示{marker.title}。而且我不知道如何做到这一点...这是GitHub存储库上这个项目的链接:https://github.com/hajczek/Neighborhood---Warsaw-Cultural-Map也许有些人知道,如何解决这个问题...感谢您的回答: )
答案 0 :(得分:0)
我通过这种方式解决了这个问题:
document.getElementById('address').textContent = address;
我将此代码放入'then'的一部分:
.then(results => {
const address = results[0].formatted_address;
console.log(address);
document.getElementById('address').textContent = address;
})