Google FORMulating Community-Based Empowerment¶
Adding a Google Form to our mapplication!
Goals
- Create a Google Form with meaningful questions
- Embed a Google Form into a website using an iFrame
- Implement a trigger for geocoding “location” data in Google Sheets
Starting template code for lab #4¶
Use the following template code or your lab assignment #3a or #3b:
index.html | |
---|---|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
|
styles/style.css
body{
display: grid;
grid-auto-rows: auto 1fr;
grid-template-areas: "header" "main_content" "footer";
background-color: aqua;
}
header{
grid-area: header;
}
#footer{
grid-area: footer;
}
.main{
grid-area: main_content;
grid-template-areas: "content" "main_map";
display: grid;
}
#contents{
grid-area: content;
}
#the_map{
height:80vh;
grid-area: main_map;
}
js/init.js | |
---|---|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
|