0

I want to resize the div from google map, but I don't have the code in my html file, I used the map in this code, I don't have the code anymore

    <iframe class="map-content"
        src="https://maps.google.com/maps?q={{json_decode($project->location,true)['lat']}},{{json_decode($project->location,true)['long']}}&output=embed">
    </iframe> 

enter image description here

ADyson
  • 57,178
  • 14
  • 51
  • 63
Agata
  • 362
  • 3
  • 13
  • 1
    Looks like there are classes called place-card and place-card-large. You could try writing some CSS to override those, if they contain size instructions in their current definition (your browser's element inspector can tell you that) – ADyson Oct 28 '21 at 05:48
  • @ADyson I tried to change the size using these classes but it didn't work – Agata Oct 28 '21 at 05:51
  • @ADyson ok I get it thank you – Agata Oct 28 '21 at 06:12

1 Answers1

1

You cannot overwrite the styles of an iframe that is loaded elsewhere.