[[["わかりやすい","easyToUnderstand","thumb-up"],["問題の解決に役立った","solvedMyProblem","thumb-up"],["その他","otherUp","thumb-up"]],[["必要な情報がない","missingTheInformationINeed","thumb-down"],["複雑すぎる / 手順が多すぎる","tooComplicatedTooManySteps","thumb-down"],["最新ではない","outOfDate","thumb-down"],["翻訳に関する問題","translationIssue","thumb-down"],["サンプル / コードに問題がある","samplesCodeIssue","thumb-down"],["その他","otherDown","thumb-down"]],["最終更新日 2025-03-13 UTC。"],[[["`TileProvider` is an interface for classes that provide tile images for a `TileOverlay` on a map."],["Implementations of this interface must be thread-safe as they may be called from multiple threads."],["`TileProvider` provides a `getTile` method to retrieve the tile image for a specific tile coordinate."],["A `NO_TILE` constant is provided to indicate the absence of a tile for a given coordinate."]]],["The `TileProvider` interface supplies tile images for a `TileOverlay`. Implementations must be thread-safe due to potential multi-threaded method calls. It defines a `NO_TILE` field, indicating the absence of a tile at a specific coordinate. The core method, `getTile`, takes x, y coordinates, and zoom level to return a `Tile`. If no tile is available, it should return `NO_TILE`; if the tile can't be fetched at that moment, it returns null. `UrlTileProvider` is an example of an implementation that is a partial one.\n"]]