如何使用JQUERY GMAP3库将Google Maps位置设置为修复



我一直在努力将Google Maps Div的位置确定,即使我尝试在GMAP3库上使用like在GMAP3库上附加事件 $('#map-google').gmap3({}).on(tilesloaded: function(){})试图应用此答案,但它不起作用,我花了3个小时来这样做。因此,我将把发现的人留给有同样问题的人。

在Internet上使用vanilla JavaScript有一个答案,但没有使用jQuery和gmap3库

对于这三个工作,您必须以这种方式将其放置

$('#map-google').gmap3({
        map: {
            options:{
              center:center,
              scrollwheel: false,
              zoom: 12
            },
            events: {
               tilesloaded: function(){
                  $('#map-google').css('position','fixed')
            }
         },
    },

相关内容

  • 没有找到相关文章

最新更新