Skip to content

Commit

Permalink
activate back orientation
Browse files Browse the repository at this point in the history
  • Loading branch information
YosanAI committed Aug 12, 2024
1 parent b418507 commit 9dbf007
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/providers/GoogleMapsProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export class GoogleMapsProvider extends MapProvider
reject();
};
image.crossOrigin = 'Anonymous';
image.src = 'https://tile.googleapis.com/v1/2dtiles/' + zoom + '/' + x + '/' + y + '?session=' + this.sessionToken /*+ '&orientation=' + this.orientation */+ '&key=' + this.apiToken;
image.src = 'https://tile.googleapis.com/v1/2dtiles/' + zoom + '/' + x + '/' + y + '?session=' + this.sessionToken + '&orientation=' + this.orientation + '&key=' + this.apiToken;
});
}
}

0 comments on commit 9dbf007

Please sign in to comment.