Wordpress : Need to set zoom level in google embedded map iframe

I resolved my problem , here i am adding some screen-shots,

I opened the page ,and enter image description here

then it opened like this

enter image description here

Now go to address bar i.e

enter image description here and find out lat long and Z associated with lat long you may change this Z as you want and refresh the page

or

enter image description here

After this go to cog button on top left side i.e

enter image description here

after this it will open a side bar like this

enter image description here then look for share or embed map and click on that it will open

enter image description here

then enter image description here

now copy iframe code from here and use. enter image description here

Thats it. It will work for every one.


<html>

   <head>
     <title>Google map</title>
   </head>
  <body>
    <iframe style="height:100%; width:100%;" src="https://www.google.com/maps/embed/v1/place?q=27+Eddisbury+Dr,+Newcastle,+Staffordshire+ST5+7SL,+UK&key=AIzaSyAN0om9mFmy1QN6Wf54tXAowK4eT0ZUPrU&zoom=15"></iframe></div>
	
  </body>   
</html>

you can use zoom variable for zoom level like bellow.

<iframe style="height:100%; width:100%;" src="https://www.google.com/maps/embed/v1/place?q=27+Eddisbury+Dr,+Newcastle,+Staffordshire+ST5+7SL,+UK&key=AIzaSyAN0om9mFmy1QN6Wf54tXAowK4eT0ZUPrU&zoom=15"></iframe></div>

You can try with the &z=nn Some value parameter. It works fine for me. Here is a reference code for you.

<iframe width="640" height="480" src="https://www.google.com/maps/d/embed?mid=1I8s3COxd2tY0wGKPiBxra1gkE6wpAEx1&z=19"></iframe>