GEOMETRYFEATURE
Wraps a GeoJSON Geometry in a GeoJSON Feature.
Parameters
geometry
Geometry (required) - GeoJSON geometry
properties
object - properties to add to the feature
options
object - options
Returns
Feature - the GeoJSON Feature object
Examples
const geometry = {
type: 'Point',
coordinates: [110, 50]
};
INSPECT(GEOMETRYFEATURE(geometry, { name: "US 19" }))
// returns
// {
// type: "Feature",
// properties: {
//. name: "US 19"
//. },
// geometry: { type: "Point", coordinates: [110, 50] },
// };
Updated about 1 year ago