Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add internalUsageAttributionId to examples. #923

Open
wants to merge 6 commits into
base: main
Choose a base branch
from

Conversation

zhunhan
Copy link

@zhunhan zhunhan commented Jan 31, 2025

No description provided.

@zhunhan zhunhan marked this pull request as ready for review February 3, 2025 15:41
@zhunhan zhunhan marked this pull request as draft February 3, 2025 15:44
@wangela wangela self-requested a review February 4, 2025 01:33
@usefulthink
Copy link
Contributor

As far as I can tell, this change wouldn't do anything, since the implementation doesn't add unknown parameters to the URL.
I assume this is supposed to pass the value of the internalUsageAttributionId option as url-parameter internal_usage_attribution_id(?) when loading the maps API?

See here:

js-api-loader/src/index.ts

Lines 496 to 506 in a20e37b

const params = {
key: this.apiKey,
channel: this.channel,
client: this.client,
libraries: this.libraries.length && this.libraries,
v: this.version,
mapIds: this.mapIds,
language: this.language,
region: this.region,
authReferrerPolicy: this.authReferrerPolicy,
};

and here:

js-api-loader/src/index.ts

Lines 369 to 411 in a20e37b

public createUrl(): string {
let url = this.url;
url += `?callback=__googleMapsCallback&loading=async`;
if (this.apiKey) {
url += `&key=${this.apiKey}`;
}
if (this.channel) {
url += `&channel=${this.channel}`;
}
if (this.client) {
url += `&client=${this.client}`;
}
if (this.libraries.length > 0) {
url += `&libraries=${this.libraries.join(",")}`;
}
if (this.language) {
url += `&language=${this.language}`;
}
if (this.region) {
url += `&region=${this.region}`;
}
if (this.version) {
url += `&v=${this.version}`;
}
if (this.mapIds) {
url += `&map_ids=${this.mapIds.join(",")}`;
}
if (this.authReferrerPolicy) {
url += `&auth_referrer_policy=${this.authReferrerPolicy}`;
}
return url;
}

(I don't know right now which of these two is used in which use-case, but both of them only handle well-known parameters).

@usefulthink
Copy link
Contributor

(disregard my comment, I just now realized that the values is being passed to the map constructor and not the api loader).

@zhunhan zhunhan changed the title chore: add internalUsageAttributionId to examples and README. chore: add internalUsageAttributionId to examples. Feb 6, 2025
@zhunhan
Copy link
Author

zhunhan commented Feb 6, 2025

(disregard my comment, I just now realized that the values is being passed to the map constructor and not the api loader).

Thank you Martin! I was caught up by something else so was not able to reply earlier. You are right, these parameters are part of mapOptions so they won't be passed as bootstrap parameters, instead, the user who initiate the map should attach this - if they copy/paste from the examples.

@zhunhan
Copy link
Author

zhunhan commented Feb 6, 2025

Updated per reviewer's suggestions. TY!

@zhunhan zhunhan marked this pull request as ready for review February 6, 2025 17:29
@zhunhan zhunhan requested a review from wangela February 6, 2025 21:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants