尝试在 ELG.geocode 中添加地址列表。错误:无法读取未定义的属性“0”;(结果)
原文:https ://codesandbox.io/s/geocoding-in-react-leaflet-v3x-forked-uilpl?file=/src/MyMap.jsx:632-725
ELG.geocode()
.text(address)
.run((err, results, response) => {
console.log(results.results[0].latlng);
const { lat, lng } = results.results[0].latlng;
map.setView([lat, lng], 12);
L.marker([lat, lng])
.addTo(map)
.bindPopup(address)
.openPopup();
});
return null;