yii2-google-maps-library
yii2-google-maps-library copied to clipboard
Support for "vw" and "vh", also other CSS units.
Hi can u provide support for different css units other than "px"? It could help more devs that don't rely on "px" anymore. TIA
$map = new Map([
'center' => $coords,
'zoom' => 5,
'width' => '100%', ✓
'height' => '70vh' ??
]);
Useful links: https://stackoverflow.com/questions/29463318/what-is-the-difference-between-and-vw-in-css
Nevermind, I just solved it using traditional CSS.
<style>
#gmap0-map-canvas {
width: 100% !important;
height: 70vh !important;
}
</style>