Skip to content

Commit

Permalink
chore: minor documentation changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jokerttu authored and illuminati1911 committed Jan 24, 2025
1 parent 6c8fd57 commit 75883aa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -529,8 +529,8 @@ class GoogleMapsFlutterAndroid extends GoogleMapsFlutterPlatform {
.toList(),
);

if (!_tileOverlays.containsKey(creationId)) {
// Set initial tile overlays on new map creation.
if (_tileOverlays[creationId] == null) {
// Initialize the tile overlays for the mapId.
_tileOverlays[creationId] = keyTileOverlayId(mapObjects.tileOverlays);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -471,8 +471,8 @@ class GoogleMapsFlutterIOS extends GoogleMapsFlutterPlatform {
.toList(),
);

if (!_tileOverlays.containsKey(creationId)) {
// Set initial tile overlays on new map creation.
if (_tileOverlays[creationId] == null) {
// Initialize the tile overlays for the mapId.
_tileOverlays[creationId] = keyTileOverlayId(mapObjects.tileOverlays);
}

Expand Down

0 comments on commit 75883aa

Please sign in to comment.