row=guiUtils.createTableRow([guiUtils.createLabel("I am aware that this map is displayed under the terms of the <a href='https://cloud.google.com/maps-platform/terms/'>license of Google Maps Platform</a> and I agree to these terms. "+
"In particular, I warrant that this dataset does not contain Protected Health Information (as defined in and subject to HIPAA). "),consentCheckbox]);
content.appendChild(row);
varbuttons=[{
text:"SAVE",
click:function(){
...
...
@@ -237,7 +245,8 @@ OverlayPanel.prototype.openEditOverlayDialog = function (overlay) {
returnServerConnector.updateOverlay({
overlayId:overlay.id,
name:nameInput.value,
description:descriptionInput.value
description:descriptionInput.value,
googleLicenseConsent:consentCheckbox.checked
}).then(function(){
returnself.refresh();
}).then(function(){
...
...
@@ -265,6 +274,7 @@ OverlayPanel.prototype.openEditOverlayDialog = function (overlay) {
}
}];
self.openDialog(content,{
width:"600px",
id:overlay.getId(),
buttons:buttons,
title:"Data overlay: "+overlay.getName(),
...
...
@@ -317,7 +327,7 @@ OverlayPanel.prototype.refresh = function () {