How to use leaflet.js with react-native(如何将 Leaflet.js 与 react-native 一起使用)
问题描述
我很难用 react-native
设置 Leaflet.js
.文档告诉我在我的 html 中添加以下脚本...
I am having a difficult time setting up Leaflet.js
with react-native
. The documentation tells me to add the following script in my html...
<script src="https://unpkg.com/leaflet@1.0.1/dist/leaflet.js"></script>
但我不确定我是如何使用 react 来做到这一点的.现在我的主页呈现如下...
But I am not sure how I do this using react. Right now my main page is being rendered as follows...
AppRegistry.registerComponent('beacon', () => Home);
而我的 Home
就是...
export default Home = () => {
return (
<Provider store={store}>
<MainMap />
</Provider>
);
}
在哪里/如何添加此脚本标记以包含 Leaflet.js
?甚至可能吗?是否有其他解决方案?
Where/How do I add this script tag to include Leaflet.js
? Is it even possible? Is there perhaps another solution?
我还没有看到任何 react-native
和 Leaflet.js
的示例,如果有的话,在 github 上或其他什么地方,我很乐意看看吧.
I haven't seen any examples of react-native
and Leaflet.js
, if there is one, on github or what not, I'd be happy to see it.
推荐答案
有个项目react-leaflet 通过它你可以使用leaflet.js 和react.
There is a project react-leaflet through which you can use leaflet.js with react.
但目前 不支持 在 react-native 中使用 leaflet.js.有关详细信息,请参阅此问题.
But currently there is no support for using leaflet.js in react-native. See this issue for more info.
这篇关于如何将 Leaflet.js 与 react-native 一起使用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何将 Leaflet.js 与 react-native 一起使用
基础教程推荐
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01