Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我编写了一个代码来显示带有地方 api 的地方,但是当我键入 etc“Paris France”时,代码不会显示位置。
演示:这是链接
代码:这是代码
一切正常,但当我输入等“法国巴黎”(自动完成)时,api 没有显示任何内容
有什么办法可以解决这个问题吗?
(对不起我的英语不好,但我正在努力学习)
嗯...中心就在太平洋上...
尝试制作一个 map.setCenter() 到点。
if (place.geometry.viewport) { map.fitBounds(place.geometry.viewport); } else { map.setCenter(place.geometry.location); map.setZoom(17); }