创建地图并在其上添加其他矢量(VectorSources)图块(react-native-mapbox-gl)

时间:2017-12-19 16:32:27

标签: react-native mapbox mapbox-gl

惠, 我想使用react-native-mapbox-gl构建一个应用程序,并希望做一些完全像在web中使用mapbox的应用程序。

https://medium.com/@zhenanhong/creating-map-based-visualization-using-vector-tiles-dbf55d15a7f

我已经可以显示地图但是当我添加了矢量源和填充图层时,没有发生任何事情......



    return(
     <Mapbox.MapView
       styleURL={Mapbox.StyleURL.Street}
       zoomLevel={10}
       style={styles.container}
       showUserLocation={true}
       userTrackingMode={1}
     >
      <Mapbox.VectorSource>
        <Mapbox.FillLayer
            id='customSourceFill'
            sourceLayerID='vector-source'
            style={stylesMap.boxFill} />
      </Mapbox.VectorSource>
     </Mapbox.MapView>
    )
&#13;
&#13;
&#13;

enter image description here

希望有人能为我提供操作react-native-mapbox-gl的指导,因为这个例子对我不起作用。

0 个答案:

没有答案