我正在使用来自 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}
/>
我可以使用此 url 模板显示图块:
urlTemplate={'http://c.tile.openstreetmap.org/{z}/{x}/{y}.png'}
现在我想访问 z、x 和 y 变量来记录请求的图块。