var c = ee.ImageCollection('foo').aside(print)
.filterDate('2001-01-01', '2002-01-01').aside(print, 'In 2001')
.filterBounds(geom).aside(print, 'In region')
.aside(Map.addLayer, {min: 0, max: 142}, 'Filtered')
.select('a', 'b');
연결을 위해 동일한 객체를 반환합니다.
| 사용 | 반환 값 | 
|---|---|
| FeatureCollection.aside(func, var_args) | ComputedObject | 
| 인수 | 유형 | 세부정보 | 
|---|---|---|
| 다음과 같은 경우: computedobject | ComputedObject | ComputedObject 인스턴스입니다. | 
| func | 함수 | 호출할 함수입니다. | 
| var_args | VarArgs<Object> | 함수에 전달할 추가 인수입니다. | 
예
코드 편집기 (JavaScript)
// Get a FeatureCollection of power plants in Belgium. Use "aside" to print the // collection and display it on the Map. var fc = ee.FeatureCollection('WRI/GPPD/power_plants') .filter('country_lg == "Belgium"') .aside(print, 'Power plants in Belgium') .aside(Map.centerObject, 7) .aside(Map.addLayer, {color: 'blue'}, 'Power plants');