我想做一个搜索引擎,其中给出了地址。搜索字段具有自动完成功能,您可以从建议的地址中进行选择。 (就像您在Google地图中输入地址一样)
您也可以从位置树中选择而不输入。
示例:
I choose from the suggested list in the "State" search engine.
- "Country" <----
- Province
- Province <---- I choose this province
- Province
- Province
- Province
effect:
- "Country" <----
- Province
- Province
- City <----- I choose this city
- City
- City
- City
- Province
- Province
- Province
effect:
<Search>
<input> City name </ input>
<select> + 10km, + 25km, + 50km </ select>
</ Search>
您如何做到这一点?我知道如何用javascript编写它,以使这种滑动搜索引擎具有自动完成功能。但是我应该从哪里获得该搜索引擎的数据?连续精选:
- State
- Province
- City
- Streets
我目前正在使用此搜索引擎:dieseshaus.hubertsuder.pl
帮助