菜鸟教程小白 发表于 2022-12-13 14:11:02

javascript - React Native - 地理位置


                                            <p><p>我正在尝试在我的 iOS React Native 应用程序中访问地理位置。我正在查看 <a href="https://facebook.github.io/react-native/docs/geolocation.html" rel="noreferrer noopener nofollow">documentation</a> 中的示例但这完全没有帮助。在示例中,我不明白 Geolocation API 是如何使用的。</p>

<p>我的第一 react 是:</p>

<pre><code>var React = require(&#39;react-native&#39;);
var {
    Geolocation
} = React;
</code></pre>

<p>然后在我的代码中,执行如下操作:</p>

<pre><code>Geolocation.getCurrentPosition((position) =&gt; {
   console.log(position);
},
(error) =&gt; {
    console.log(error);
});
</code></pre>

<p>但是,这似乎失败了。在示例中,它使用如下地理位置:</p>

<pre><code>navigator.geolocation.getCurrentPosition(
(position) =&gt; {
    var initialPosition = JSON.stringify(position);
    this.setState({initialPosition});
},
(error) =&gt; alert(error.message),
{enableHighAccuracy: true, timeout: 20000, maximumAge: 1000}
);
</code></pre>

<p>但是,尚不清楚 navigator 来自何处以及为什么它具有附加的地理位置属性。我没有得到什么?</p>

<p>提前致谢。</p>

<p><strong>更新:</strong></p>

<p>原来的解决方案很简单:</p>

<pre><code>var Geolocation = require(&#39;Geolocation&#39;);
</code></pre>

<p>我很困惑,因为 PushNotificationIOS(其文档与 Geolocation 位于同一区域)在 React Native 中通过以下方式使用:</p>

<pre><code>var React = require(&#39;react-native&#39;);
var {
    PushNotificationIOS
} = React;
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>你为什么不直接使用这个例子呢?我不知道 <code>navigator</code> 来自哪里,但我以这种方式使用它并且它工作正常。 </p>

<p>您是否还在 Info.plist 中添加了 <code>NSLocationWhenInUseUsageDescription</code> 键?</p></p>
                                   
                                                <p style="font-size: 20px;">关于javascript - React Native - 地理位置,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/35308009/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/35308009/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: javascript - React Native - 地理位置