Returns a GeoJSON string representation of the geometry.
Usage | Returns | Point.toGeoJSONString() | String |
Argument | Type | Details | this: geometry | Geometry | The Geometry instance. |
Examples
Code Editor (JavaScript)
// Define a Point object.
var point = ee.Geometry.Point(-122.082, 37.42);
// Apply the toGeoJSONString method to the Point object.
var pointToGeoJSONString = point.toGeoJSONString();
// Print the result to the console.
print('point.toGeoJSONString(...) =', pointToGeoJSONString);
// Display relevant geometries on the map.
Map.setCenter(-122.085, 37.422, 15);
Map.addLayer(point,
{'color': 'black'},
'Geometry [black]: point');