GEOMETRYLINESTRING
Creates a LineString Feature from an Array of Positions.
Parameters
coordinates
Array (required) - an array of Positions
properties
an Object of key-value pairs to add as properties
options
object - options
Returns
Feature - LineString Feature
Examples
const line = GEOMETRYLINESTRING([[115, -32], [131, -22], [143, -25], [150, -34]]);
GEOMETRYLINESTRING([[-24, 63], [-23, 60], [-25, 65], [-20, 69]], { name: 'line 1' });
// returns
// {
// type: "Feature",
// properties: { name: "line 1" },
// geometry: {
// type: "LineString",
// coordinates: [
// [-24, 63],
// [-23, 60],
// [-25, 65],
// [-20, 69],
// ],
// },
// };
Updated about 1 year ago