IFrame Google Map without API_KEY

by Faisal Khan Janjua

HTML

<iframe src="https://maps.google.com/maps?q=33.684422,73.047882&hl=en-US&z=14&output=embed" allowfullscreen="" aria-hidden="false" tabindex="0"></iframe>


<!--
URL Parms:
q => coordinates (lat,lng)
z => zoom level (int)
output => output type ("embed")
hl => language (en-US)
map_action => map
basemap => satellite

-->

CSS

body {
  margin: 0;
  padding: 0;
}
iframe {
  border: none;
  width: 100%;
  height: 100vh;
}