Currently, I am working with angular2 and the Google Maps component from . The issue I am trying to address is the need for the map to fill my container div. For example:
<div id="container" style="height:100%; width: 100%">
<agm-map></agm-map>
<div>
(I'm using CSS for styling as opposed to inline styles in this example)
I am looking to have the agm-map always fill the container div regardless of its height or width. It seems challenging when the agm map only wants the height in pixels (px) or viewport height (vh).
In addition, having resizing and responsiveness would be great.