Zoom control and streetview not showing on my Google map?

后端 未结 7 2068
南笙
南笙 2020-11-29 20:08

I\'m inserting a very basic Google map into my page and the zoom control and streetmap icon are not visible, however if I place my mouse over where they should be I can zoom

相关标签:
7条回答
  • 2020-11-29 20:35

    I ran into a variant, with the offending css looking like:

    img {
      max-width: 100%;
      max-height: 100%;
    }

    So, an additional line is needed:

    #map_div img {
       max-width: none !important;
       max-height: none !important;
    }
    
    0 讨论(0)
提交回复
热议问题