react-native-maps自定义图块未显示

时间:2018-12-06 11:33:30

标签: reactjs react-native google-maps-api-3 react-native-maps

我想在我的本机应用程序中实现自定义图块系统以供离线模式使用。我已经实现了将自定义图块下载并保存到我的android仿真器设备中的系统。这些文件在地图渲染时确实存在。我的磁贴保存在/data/user/0/com.myapp/files/maps/COUNTRY_CODE/{z}/{x}/{y}.png中,例如对于捷克语,我的设备文件夹结构如下:

/data/user/0/com.myapp/files/maps/CZ/:
  - 4/
    - 8/
      - 5.png
  - 5/
    - 17/
      - 10.png
      - 11.png
  - 6/
    - 34/
      - 21.png
      - 22.png
    - 35/
      - 21.png
      - 22.png
  - 7/
    ...
  - 8/
    ...
  - 9/
    ...
  - 10/
    ...

对于图块下载和文件系统管理,我使用的是rn-fetch-blob,解压缩/保存由react-native-zip-archive处理。

我的地图组件看起来像:

// this returns /data/user/0/com.myapp/files/maps
const tilesPath = RNFetchBlob.fs.dirs.DocumentDir + "/maps";

// prints to the console that one of the tiles choosed randomly really exists
// maybe I should make more detailed check if every of the tiles exist for testing?
const czMapFound = RNFetchBlob.fs
  .exists(tilesPath + "/CZ/4/8/5.png")
  .then(res => {
     console.log(res);
     return res;
   });

if (czMapFound) {
  // log just to make sure that this branch of statement is executed
  console.log(tilesPath + "/CZ/{z}/{x}/{y}.png");
  return (
    <MapView
      style={styles.map}
      onRegionChange={mapRegion => this.setState({ mapRegion })}
      region={{
        // In this example, map is pointing at Czech Republic correctly
        latitude: selectedMap ? selectedMap.centerX : 52.519325,
        longitude: selectedMap ? selectedMap.centerY : 13.392709,
        latitudeDelta: selectedMap ? selectedMap.sizeX : 50,
        longitudeDelta: selectedMap ? selectedMap.sizeY : 50
      }}
    >
      <LocalTile
        pathTemplate={tilesPath + "/CZ/{z}/{x}/{y}.png"}
        size={256}
      />
    </MapView>
  );
}

我的地图没有显示任何自定义图块,我所看到的只是遍布捷克共和国的默认Google地图图块。我无法使其工作。

但是,当我使用UrlTile并将urlTemplate设置为http://c.tile.openstreetmap.org/{z}/{x}/{y}.png时,自定义磁贴有效。也许我只是将图块保存到错误的设备文件夹中,而我的设备无法从那里读取文件?拜托,有人可以帮我吗?

注意:

瓦片是从openStreetMap服务下载的,并且按国家/地区存储在本地

2 个答案:

答案 0 :(得分:1)

实际上,我是自己弄清楚的。因此,如果将来其他任何人都会遇到此类问题,即使您尝试加载自定义图块,我也建议您使用UrlTile而不是LocalTile。您的代码如下所示:

<MapView
  style={styles.map}
  // keep the reference for region inside your local state..
  onRegionChangeComplete={mapRegion => this.setState({ mapRegion })}
  region={this.state.mapRegion}
 >
   <UrlTile urlTemplate={urlTemplate} zIndex={1} />
 </MapView>

要使其正常工作,请确保您通往图块的路径以file://前缀开头,例如const urlTemplate = "file://"+"RNFetchBlob.fs.dirs.DocumentDir"+"/maps/CZ/{z}/{x}/{y}.png"

答案 1 :(得分:0)

您正在构建正确的路径,但是LocalTile的第二个属性存在错误,您在写size时实际上应该是tileSize

<LocalTile 
   pathTemplate="/path/to/locally/saved/tiles/{z}/{x}/{y}.png"
   tileSize={256}
   zIndex={-1}
/>

react-native-maps的{​​{3}}上看到

无论如何,我都同意UrlTile更直接。