1// Display an image given its ID. 2 3var image = ee.Image('CGIAR/SRTM90_V4'); 4// Center the Map. 5Map.setCenter(-110, 40, 5); 6// Display the image. 7Map.addLayer(image, {min: 0, max: 3000}, 'SRTM'); 8 9