새로운 지도 스타일이 곧 Google Maps Platform에 제공될 예정입니다. 이 지도 스타일 지정 업데이트에는 새로운 기본 색상 팔레트와 지도 환경 및 사용성 개선사항이 포함됩니다. 모든 지도 스타일이 2025년 3월에 자동으로 업데이트됩니다. 사용 가능 여부 및 더 일찍 선택하는 방법에 대한 자세한 내용은 Google Maps Platform용 새로운 지도 스타일을 참고하세요.
[[["이해하기 쉬움","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-21(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"]]