React Native 和 WMS

React Native and WMS

我正在使用 React Native 开发需要使用 Web 地图服务的移动应用程序。我还没有找到任何允许同时使用 WMS 和 React Native 的库或框架。在 React (Web) 中,我发现 one。 我的问题是:

你知道是否存在允许我使用 WMS 和 React Native 的库或框架,或者是否有可能在 React native 中集成 React (web) 库?

谢谢!

我决定使用的方法如下:

  1. 使用 react-native 中的 WebView

  2. 使用 openlayers

在您的 react-native class 的渲染方法中声明一个变量,其中包含来自 openlayers Map 的 HTML 代码: render() { var html = ` <!DOCTYPE html> <html> <head> <title>Simple Map</title> <link rel="stylesheet" href="https://openlayers.org/en/v3.20.0/css/ol.css" type="text/css"> <!-- The line below is only needed for old environments like Internet Explorer and Android 4.x --> <script src="https://cdn.polyfill.io/v2/polyfill.min.js?features=requestAnimationFrame,Element.prototype.classList,URL"></script> <script src="https://openlayers.org/en/v3.20.0/build/ol.js"></script> </head> <body> <div id="map" class="map"></div> <script> var map = new ol.Map({ layers: [ new ol.layer.Tile({ source: new ol.source.OSM() }) ], target: 'map', view: new ol.View({ center: [0, 0], zoom: 2 }) }); </script> </body> </html> `

然后将这个变量传递给WebView: return ( <View style={styles.container}> <WebView ref={webview => { this.webview = webview; }} source={{html}} onMessage={this.onMessage}/> </View> ); } }

如果您想将 react-native 端与 WebView 端进行通信,请查看 react-native 中的 WebView 示例。

您可以在 openlayers 示例页面中找到更多示例。