일단은 구글맵 소스 코드를 수정하는 방법입니다.
구글맵 소스 코드 중에 아래와 같이 iframe으로 시작하는 구문이 있습니다.
<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.co.kr/maps?f=q&source=s_q&hl=ko&geocode=&q=%E5%8D%97%E4%BA%AC&aq=&sll=32.112313,118.745556&sspn=0.052852,0.090895&ie=UTF8&hq=&hnear=%EC%A4%91%ED%99%94%EC%9D%B8%EB%AF%BC%EA%B3%B5%ED%99%94%EA%B5%AD+%EC%9E%A5%EC%91%A4+%EC%84%B1+%EB%82%9C%EC%A7%95+%EC%8B%9C&ll=32.060255,118.796877&spn=0.423143,0.727158&t=m&z=11&output=embed"></iframe>
윗 구문 중에서 붉은 색으로 표시된 output=embed 구문 뒤에 &iwloc=near 이라는 구문을 추가해 주면 됩니다.
<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.co.kr/maps?f=q&source=s_q&hl=ko&geocode=&q=%E5%8D%97%E4%BA%AC&aq=&sll=32.112313,118.745556&sspn=0.052852,0.090895&ie=UTF8&hq=&hnear=%EC%A4%91%ED%99%94%EC%9D%B8%EB%AF%BC%EA%B3%B5%ED%99%94%EA%B5%AD+%EC%9E%A5%EC%91%A4+%EC%84%B1+%EB%82%9C%EC%A7%95+%EC%8B%9C&ll=32.060255,118.796877&spn=0.423143,0.727158&t=m&z=11&output=embed&iwloc=near"></iframe>
크게 보기
완전 간단!!