gee如何顯示自己上傳的地圖文件
在GEE當(dāng)中都有一個(gè)函數(shù)叫做
Map.addLayer(eeObject,?visParams,?name,?shown,?opacity)
Adds a given EE object to the map as a layer.
Returns the new map layer.
Arguments:
eeObject (Collection|Feature|Image|RawMapId):
The object to add to the map.
visParams (FeatureVisualizationParameters|ImageVisualizationParameters, optional):
The visualization parameters. For Images and ImageCollection, see ee.data.getMapId for valid parameters. For Features and FeatureCollections, the only supported key is "color", as a CSS 3.0 color string or a hex string in "RRGGBB" format. Ignored when eeObject is a map ID.
name (String, optional):
The name of the layer. Defaults to "Layer N".
shown (Boolean, optional):
A flag indicating whether the layer should be on by default.
opacity (Number, optional):
The layer's opacity represented as a number between 0 and 1. Defaults to 1.
Returns: ui.Map.Layer
eeObject (Collection|Feature|Image|RawMapId)。
要添加到地圖中的對象。
visParams (FeatureVisualizationParameters|ImageVisualizationParameters, optional):
可視化參數(shù)。對于圖像和圖像集合,有效參數(shù)見ee.data.getMapId。對于特征和特征集合,唯一支持的鍵是 "color",是一個(gè)CSS 3.0顏色字符串或 "RRGGBB "格式的十六進(jìn)制字符串。當(dāng)eeObject是一個(gè)地圖ID時(shí)被忽略。
name(字符串,可選)。
圖層的名稱。默認(rèn)為 "N層"。
shown(布爾值,可選)。
表示該圖層是否應(yīng)該默認(rèn)打開的標(biāo)志。
opacity(數(shù)字,可選)。
該圖層的不透明度,用0到1之間的數(shù)字表示,默認(rèn)為1。
返回:ui.Map.Layer

================================
導(dǎo)入上傳的地圖數(shù)據(jù)
var table2= ee.FeatureCollection("projects/*******/*****/central_asia_boundary");
Map.centerObject(table2,5)
Map.addLayer(table2,{},'central_asia_boundary')
