Google Maps API V3 Printing Maps

前端 未结 5 1615
北海茫月
北海茫月 2020-12-09 14:13

I am looking for a method to efficiently print Google maps that have been implemented on a site using the google maps api v3.

I have seen some people using just the

5条回答
  •  [愿得一人]
    2020-12-09 14:18

    Please note, if you're also using Bootstrap it will break map printing for you. Add this code:

    @media print {
      img {
        max-width: auto !important;
      }
    }
    

    See Twitter Bootstrap CSS affecting Google Maps.

提交回复
热议问题