As per -requestTileForX:y:zoom:receiver: on GMSTileLayer, but provides a synchronous
interface to return tiles. This method may block or otherwise perform work, and is not called on
the main thread.
Calls to this method may also be made from multiple threads so implementations must be
threadsafe.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-27 UTC."],[],["`GMSSyncTileLayer` is a subclass of `GMSTileLayer` offering a synchronous method for generating image tile data. The core function, `tileForX:y:zoom:`, mirrors `requestTileForX:y:zoom:receiver:` but operates synchronously and can potentially block. This method, which isn't executed on the main thread, returns a `UIImage` tile based on provided x, y coordinates, and zoom level. Implementations must be thread-safe due to possible multi-threaded calls.\n"]]