我正在使用react-native-maps中的自定义图块叠加:
<MapView.UrlTile
/**
* The url template of the tile server. The patterns {x} {y} {z} will be replaced at runtime
* For example, http://c.tile.openstreetmap.org/{z}/{x}/{y}.png
*/
urlTemplate={this.state.urlTemplate}
/>
我可以使用此网址模板显示图块:
urlTemplate={'http://c.tile.openstreetmap.org/{z}/{x}/{y}.png'}
现在我想访问z,x和y变量来记录请求的磁贴。