ui.root.setKeyHandler

กำหนดตัวแฮนเดิลเหตุการณ์ keydown ให้กับแผงรูทด้วยคีย์ที่ไม่ได้กำหนดไว้ล่วงหน้า ตัวแฮนเดิลจะทำงานเพียงครั้งเดียวเมื่อผู้ใช้กดคำสั่งคีย์ที่ผูกไว้ ระบบจะผูกคีย์เดียวกันกับตัวแฮนเดิลล่าสุดที่ตั้งค่าไว้

การใช้งานการคืนสินค้า
ui.root.setKeyHandler(keyCode, handler, description)
อาร์กิวเมนต์ประเภทรายละเอียด
keyCodeList[ui.Key]|ui.Keyรหัสคีย์หรืออาร์เรย์ของรหัสคีย์ เช่น ui.Key.A หรือ [ui.Key.SHIFT, ui.Key.A]
handlerฟังก์ชันตัวแฮนเดิลสำหรับคำสั่งคีย์
descriptionสตริง, ไม่บังคับคำอธิบายสั้นๆ ที่อธิบายคำสั่งคีย์นี้ คำอธิบายจะปรากฏในเมนูแป้นพิมพ์ลัด

ตัวอย่าง

ตัวแก้ไขโค้ด (JavaScript)

// Replace the default UI widgets with a few custom widgets.
// Print "Shift A" to the console when Shift+A is pressed.
ui.root.setKeyHandler(
  [ui.Key.SHIFT, ui.Key.A],
  function() {
    print('Shift A');
  },
  'A simple print'
);

// Create a solid black image.
var blackImage = ee.Image(1).visualize({palette: ['black']});

// Create a Layer object so we can easily manipulate its properties.
var blackLayer = ui.Map.Layer(blackImage, {}, 'Black Overlay', true);

// Add the layer to the Map.
Map.layers().add(blackLayer);

// Pressing the "b" key will toggle the layer on and off.
ui.root.setKeyHandler(ui.Key.B, function() {
  // Get the current visibility state.
  var isShown = blackLayer.getShown();

  // Set the visibility to the opposite of the current state.
  blackLayer.setShown(!isShown);

  // Print the status to the console.
  print('Black layer visible: ' + !isShown);
}, 'Toggle black layer');