Buffer the Geometry specified in the options. Return the new Geometry.
a Q.Promise of GeometryObject.
Buffer the Geometry specified in the options. Return the new Geometry.
a Q.Promise of GeometryObject.
Buffer the Geometry specified in the options. Return the new Geometry.
a Q.Promise of GeometryObject.
Buffer the Geometry specified in the options. Return the new Geometry.
a Q.Promise of GeometryObject.
The BufferGeometryCommand class is used to create a GeometryObject expanded by distance specified in BufferGeometryCommandOptions
var line = { type: 'LineString', coordinates: [[-82.441, 29.200], [-82.441, 29.535]] };
var measure = new GeometryMeasure('miles', 1, 'LineString');
var options = { geometry: line, distance: measure };
var command = new BufferGeometryCommand();
commmand.execute(options).then((newgeo: GeometryObject)=>doSomething(newgeo));