اگر عملکرد برگشت به تماس ارائه نشده باشد، درخواست به صورت همزمان انجام می شود. اگر پاسخ تماس ارائه شود، درخواست به صورت ناهمزمان انجام می شود.
حالت ناهمزمان ترجیح داده می شود زیرا حالت همزمان تمام کدهای دیگر (مثلاً رابط کاربری ویرایشگر کد EE) را در حین انتظار برای سرور متوقف می کند. برای ایجاد یک درخواست ناهمزمان، ارزیابی() بر getInfo() ترجیح داده می شود.
مقدار محاسبه شده این شی را برمی گرداند.
استفاده | برمی گرداند |
---|---|
Polygon. getInfo ( callback ) | شیء |
استدلال | تایپ کنید | جزئیات |
---|---|---|
این: computedobject | Computed Object | نمونه ComputedObject. |
callback | عملکرد، اختیاری | پاسخ به تماس اختیاری در صورت عدم ارائه، تماس به صورت همزمان انجام می شود. |
نمونه ها
ویرایشگر کد (جاوا اسکریپت)
// Define a Polygon object. var polygon = ee.Geometry.Polygon( [[[-122.092, 37.424], [-122.086, 37.418], [-122.079, 37.425], [-122.085, 37.423]]]); // Apply the getInfo method to the Polygon object. var polygonGetInfo = polygon.getInfo(); // Print the result to the console. print('polygon.getInfo(...) =', polygonGetInfo); // Display relevant geometries on the map. Map.setCenter(-122.085, 37.422, 15); Map.addLayer(polygon, {'color': 'black'}, 'Geometry [black]: polygon');
import ee import geemap.core as geemap
کولب (پایتون)
# Define a Polygon object. polygon = ee.Geometry.Polygon([[ [-122.092, 37.424], [-122.086, 37.418], [-122.079, 37.425], [-122.085, 37.423], ]]) # Apply the getInfo method to the Polygon object. polygon_get_info = polygon.getInfo() # Print the result. display('polygon.getInfo(...) =', polygon_get_info) # Display relevant geometries on the map. m = geemap.Map() m.set_center(-122.085, 37.422, 15) m.add_layer(polygon, {'color': 'black'}, 'Geometry [black]: polygon') m