我已经使用TomTom地图API创建了一个有角度的网页。我想使用自己的搜索栏来搜索地图中的位置,而不是使用tomtom地图的内置搜索栏。我该怎么办?
答案 0 :(得分:0)
您可以在以下位置检查完成的非常基本的实现:https://github.com/tomtom-international/geofences-creator
html:
<input type="text" id="search-text" class="form__input" value="San Francisco Airport">
js:
var query = document.getElementById("search-text").value;
fuzzySearch(query)
.then(getAdditionalData)
.then(processAdditionalDataResponse);
function fuzzySearch(query) {
return tomtom
.fuzzySearch()
.query(query)
.go()
.then(function(result) {
return result;
});
}
还有一个教程介绍了已调整内置搜索框的应用程序。您也可以检查它:https://developer.tomtom.com/maps-sdk-web/tutorials-use-cases/pizza-delivery