ui.Map.centerObject

इससे मैप व्यू को किसी ऑब्जेक्ट पर फ़ोकस किया जाता है.

यह ui.Map दिखाता है.

इस्तेमालरिटर्न
Map.centerObject(object, zoom, onComplete)ui.Map
आर्ग्यूमेंटटाइपविवरण
यह: ui.mapui.Mapui.Map इंस्टेंस.
objectElement|Geometryफ़ोकस करने के लिए कोई ऑब्जेक्ट - ज्यामिति, इमेज या सुविधा.
zoomनंबर, ज़रूरी नहींज़ूम लेवल, 0 से 24 तक. अगर यह जानकारी नहीं दी गई है, तो ऑब्जेक्ट के बाउंडिंग बॉक्स के आधार पर इसका हिसाब लगाया जाता है.
onCompleteफ़ंक्शन, ज़रूरी नहीं हैयह कॉलबैक, रीसेंटरिंग की प्रोसेस पूरी होने के बाद ट्रिगर होता है. इस पैरामीटर को पास करने से, `centerObject` ऑपरेशन एसिंक्रोनस तरीके से चलता है.

उदाहरण

कोड एडिटर (JavaScript)

// The default map in the Code Editor is a built-in ui.Map object called "Map".
// Let's refer to it as "defaultMap" for clarity.
var defaultMap = Map;

// ui.Map objects can be constructed. Here, a new map is declared.
var newMap = ui.Map({
  center: {lat: 0, lon: 0, zoom: 1},
  style: {position: 'bottom-right', width: '400px'}
});

// Add the newMap to the defaultMap.
defaultMap.add(newMap);

// You can set the viewport of a ui.Map to be centered on an object.
// Here, the defaultMap is centered on a point with a selected zoom level.
var geom = ee.Geometry.Point(-122.0841, 37.4223);
defaultMap.centerObject(geom, 18);
defaultMap.addLayer(geom, {color: 'orange'}, 'Googleplex');

// Map extent can be fetched using the ui.Map.getBounds method.
print('defaultMap bounds as a list',
      defaultMap.getBounds());
print('defaultMap bounds as a dictionary',
      ee.Dictionary.fromLists(['w', 's', 'e', 'n'], defaultMap.getBounds()));
print('defaultMap bounds as GeoJSON',
      defaultMap.getBounds({asGeoJSON: true}));

// Map center point can be fetched using the ui.Map.getCenter method.
print('defaultMap center as a Point geometry', defaultMap.getCenter());

// Map zoom level can be fetched using the ui.Map.getZoom method.
print('defaultMap zoom level', defaultMap.getZoom());

// Map scale can be fetched using the ui.Map.getScale method.
print('defaultMap approximate pixel scale', defaultMap.getScale());