yii2-google-maps-library icon indicating copy to clipboard operation
yii2-google-maps-library copied to clipboard

Support for "vw" and "vh", also other CSS units.

Open adummy832 opened this issue 7 years ago • 1 comments

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

adummy832 avatar May 16 '18 05:05 adummy832

Nevermind, I just solved it using traditional CSS.

<style>
    #gmap0-map-canvas {
        width: 100% !important; 
        height: 70vh !important;
    }
</style>

adummy832 avatar May 16 '18 05:05 adummy832