Is there anyway to stop google Earth's time-lapse from automatically scrolling down to itself? I have a google map like viewer with a vertically scrollable sidebar. When you click a location on the map it passes the lat/lon values into the web embedded time-lapse viewer link and automatically scrolls down on the sidebar to the time-lapse viewer, which I don't want to happen.
Thanks!
HTML:
<section id="googleEarthEngine"></section>
Here is the javascript function that loads the ifile:
function loadGoogleEarthEngine(lat, lon)
{
$('#googleEarthEngine').show();
$('#googleEarthEngine').html('<iframe id="earthFrame" src="https://earthengine.google.com/iframes/timelapse_player_embed.html#v=' + lat + ',' + lon + ',9,latLng&t=3.23" frameborder="0"></iframe>');
}
CSS:
#googleEarthEngine
{
padding-top: 10px;
width: 43vw;
height: 30vw;
margin: 2vh;
display: none;
}