An online landscape, built as a tool to explore the many aspects of the human voice.
https://voicegardens.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
496 B
16 lines
496 B
5 years ago
|
// Vocoder front-end Javascript
|
||
|
|
||
|
// Only run our JS when everything on the page is loaded.
|
||
|
// This includes images (our map tiles), see https://stackoverflow.com/a/1033448
|
||
|
window.addEventListener('load', main)
|
||
|
|
||
|
function main(){
|
||
|
const mappa = new Mappa('Leaflet');
|
||
|
// TODO: once we get the leaflet map setup, we'll overlay following
|
||
|
// the example from https://mappa.js.org/docs/examples-leaflet.html
|
||
|
}
|
||
|
|
||
|
// TODO: p5.js / mappa.js specifics for later ...
|
||
|
function setup(){}
|
||
|
function draw(){}
|