菜鸟教程小白 发表于 2022-12-13 05:32:39

ios - 下拉列表中的 map 位置名称


                                            <p><p>我的应用程序必须使用文本框集成搜索位置名称。 map 套件有什么方法可以实现这种功能吗?下图显示了我到底需要什么</p>

<p> <img src="/image/3bg4Z.png" alt="enter image description here"/> </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p><strong>没有</strong>,MapKit没有任何方法可以实现这种属性..</p>

<p>为此,您必须实现自己的代码,即使用 UISearchbarCantroller 或 Simple UISearchbar。</p>

<p>对于搜索结果,您可以使用 <a href="https://developers.google.com/places/documentation/autocomplete" rel="noreferrer noopener nofollow">Google Place Autocomplete</a>接口(interface)。</p>

<p>您可以使用 <a href="https://github.com/spoletto/SPGooglePlacesAutocomplete" rel="noreferrer noopener nofollow">GooglePlacesAutocomplete Example</a> .</p>

<p>在
iOS >= 6.1 提供 <a href="https://developers.google.com/places/documentation/autocomplete" rel="noreferrer noopener nofollow">MKLocalSearch</a> , <a href="https://github.com/spoletto/SPGooglePlacesAutocomplete" rel="noreferrer noopener nofollow">MKLocalSearchRequest</a>搜索自然语言兴趣点。样本</p>

<pre><code>MKLocalSearchRequest *request = [ init];
request.region = regionToSearchIn;
request.naturalLanguageQuery = @&#34;restaurants&#34;; // or business name
MKLocalSearch *localSearch = [ initWithRequest:request];
[localSearch startWithCompletionHandler:^(MKLocalSearchResponse *response, NSError *error) {
    // do something with the results / error
}];
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 下拉列表中的 map 位置名称,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/20141391/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/20141391/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 下拉列表中的 map 位置名称