我以即时搜索 js 为例。它们具有以下功能来渲染地图。
instantsearch.widgets.geoSearch({
container: '#map',
googleReference: window.google,
enableRefineControl: false,
builtInMarker: {
createOption: function(hit) {
return {
title: hit.description,
};
},
},
}),
我看不到哪里可以通过我的经度/纬度。似乎它生成了自动。我用的例子
https://instantsearchjs.netlify.app/examples/tourism/
任何帮助都会很棒。
谢谢