-
Notifications
You must be signed in to change notification settings - Fork 6.8k
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
feat(google-maps): add google-map component #16623
Conversation
Also, sorry for all the merge conflicts; I just merged the youtube-player |
|
||
this._mapEl$.pipe(take(1)).subscribe(mapElRef => { | ||
const mapEl = mapElRef.nativeElement; | ||
mapEl.style.height = this.height; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this.height
applied to the map only once at onInit
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Currently, yes. I think it's a good idea to make it capable of being resized, but I'd like to add that functionality, along with that of the other required inputs, in a future pull request.
Add initial infrastructure for angular/google-maps, a skeleton for the google-map component, and a demo for the google map component
Fix lint issues. Fix overviews bazel rule typo.
Fix e2e tests
Fix commas in tsconfig files
Add @angular/google-maps/google-map path to tsconfig-build.json
Fix incorrect dev-app path for google-maps
Change default location to Colossem, change map element view child to not be a stream. Minor style changes.
Change default map location to Googleplex. Remove ViewChild from google-map component.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Clean up the demo component with better variable names and remove extraneous code.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Add initial infrastructure for angular/google-maps,
a skeleton for the google-map component, and a demo
for the google map component