Responsive Google Map?

后端 未结 13 1579
北荒
北荒 2020-12-07 10:26

How to make a responsive google map from the code

I use in css

13条回答
  •  南方客
    南方客 (楼主)
    2020-12-07 10:55

    Here a standard CSS solution + JS for the map's height resizing

    CSS

    #map_canvas {
       width: 100%;
    }
    

    JS

    // On Resize
    $(window).resize(function(){ 
        $('#map_canvas').height($( window ).height());
    

    JsFiddle demo : http://jsfiddle.net/3VKQ8/33/

提交回复
热议问题