datadesk / web-map-maker

Use Natural Earth and OpenStreetMap data to export an image or a vector file.
http://datadesk.github.io/web-map-maker/
MIT License
94 stars 28 forks source link

Video capture option #69

Open jschleuss opened 7 years ago

jschleuss commented 7 years ago

To export videos similar to "capture video" here

jschleuss commented 7 years ago

Should add record button that turns into stop button (which would download the file then). And allow keyboard options to pan and zoom map (so it's smoother than scrolling or self panning).

jschleuss commented 7 years ago

Tangram docs


scene.startVideoCapture();

scene.stopVideoCapture().then(function(video) {
    saveAs(video.blob, 'tangram-video-' + (+new Date()) + '.webm');
});```
jschleuss commented 7 years ago

Or possibly keyframes, or a way to move things from point to point and reduce the loading seen along the way.