Skip to content

Commit

Permalink
fix(LazyMapsAPILoader): use default API version 3
Browse files Browse the repository at this point in the history
Closes #195
  • Loading branch information
parmod-arora authored and sebholstein committed Mar 8, 2016
1 parent 652b711 commit 426da66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/maps-api-loader/lazy-maps-api-loader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export class LazyMapsAPILoader extends MapsAPILoader {
const region: string = this._config.region || DEFAULT_CONFIGURATION.region;
const language: string = this._config.language || DEFAULT_CONFIGURATION.language;
const queryParams: {[key: string]: string} = {
v: this._config.apiVersion || DEFAULT_CONFIGURATION.apiKey,
v: this._config.apiVersion || DEFAULT_CONFIGURATION.apiVersion,
callback: callbackName
};
if (apiKey) {
Expand Down

0 comments on commit 426da66

Please sign in to comment.