Responsive Google Map?

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

How to make a responsive google map from the code

I use in css

相关标签:
13条回答
  • 2020-12-07 10:59

    It's better to use Google Map API. I've created an example here: http://jsfiddle.net/eugenebolotin/8m1s69e5/1/

    Key features are using of functions:

    //Full example is here: http://jsfiddle.net/eugenebolotin/8m1s69e5/1/
    
    map.setCenter(map_center);
    // Scale map to fit specified points
    map.fitBounds(path_bounds);
    

    It handles resize event and automaticaly adjusts size.

    0 讨论(0)
提交回复
热议问题