Created
February 19, 2013 08:18
-
-
Save nclsjstnn/4983977 to your computer and use it in GitHub Desktop.
How to capture Google Maps large satelite footage using an iframe + screen grabber
Change the "ll" value with a pair of lat/long coordinates, "z" for zoom, and the other variables in the iframe. You can look on the sharing button in Google Maps.
Then take a screenshot of the entire page using paparazzi for mac or other screen grabber (some exten…
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title></title> | |
</head> | |
<style type="text/css"> | |
body{ | |
width: 100%; | |
margin: 100%; | |
padding: 0; | |
margin: 0; | |
} | |
</style> | |
<body> | |
<iframe width="4000" height="3900" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.cl/?ie=UTF8&ll=-33.446595,-70.629257&spn=0.000817,0.000982&t=h&deg=90&z=21&output=embed"></iframe> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment