Trait maplibre::render::tile_view_pattern::HasTile
source · pub trait HasTile {
// Required method
fn has_tile(&self, coords: WorldTileCoords, world: &World) -> bool;
// Provided methods
fn get_available_parent(
&self,
coords: WorldTileCoords,
world: &World
) -> Option<WorldTileCoords> { ... }
fn get_available_children(
&self,
coords: WorldTileCoords,
world: &World,
search_depth: usize
) -> Option<Vec<WorldTileCoords>> { ... }
}