Click on the box to the left or the link below to get a template of the sample project (Feel free to share this link with your students):
https://docs.google.com/spreadsheets/d/1CwDWeOkVvDbC9WFaTBJw2CyJm26Y-TFny0N5Up6H9_s/copy#gid=0
function onOpen() {
SpreadsheetApp.getUi() // Or DocumentApp or SlidesApp or FormApp.
.createMenu('Street View')
.addItem('Street View', 'showSidebar')
.addToUi();
}
function showSidebar() {
var html = HtmlService.createHtmlOutput()
.setTitle('Street View');SpreadsheetApp.getActiveRange().getDisplayValue()
SpreadsheetApp.getUi() // Or DocumentApp or SlidesApp or FormApp.
.showSidebar(html);
}
If you need to brush up on Google Maps or Earth as well as learn some tips and tricks, check out the open training video to the left.