Methods
-
Get the spherical area of a geometry. This is the area (in meters) assuming that polygon edges are segments of great circles on a sphere.
Name Type Description geometrymodule:ol/geom/Geometry~Geometry A geometry.
optionsOptions for the area calculation. By default, geometries are assumed to be in 'EPSG:3857'. You can change this by providing a
projectionoption.Name Type Default Description projectionmodule:ol/proj~ProjectionLike 'EPSG:3857' Projection of the geometry. By default, the geometry is assumed to be in Web Mercator.
radiusnumber 6371008.8 Sphere radius. By default, the radius of the earth is used (Clarke 1866 Authalic Sphere).
Returns:
The spherical area (in square meters).
-
Get the great circle distance (in meters) between two geographic coordinates.
Name Type Description c1Array Starting coordinate.
c2Array Ending coordinate.
radiusnumber The sphere radius to use. Defaults to the Earth's mean radius using the WGS84 ellipsoid.
Returns:
The great circle distance between the points (in meters).
-
Get the spherical length of a geometry. This length is the sum of the great circle distances between coordinates. For polygons, the length is the sum of all rings. For points, the length is zero. For multi-part geometries, the length is the sum of the length of each part.
Name Type Description geometrymodule:ol/geom/Geometry~Geometry A geometry.
optionsOptions for the length calculation. By default, geometries are assumed to be in 'EPSG:3857'. You can change this by providing a
projectionoption.Name Type Default Description projectionmodule:ol/proj~ProjectionLike 'EPSG:3857' Projection of the geometry. By default, the geometry is assumed to be in Web Mercator.
radiusnumber 6371008.8 Sphere radius. By default, the radius of the earth is used (Clarke 1866 Authalic Sphere).
Returns:
The spherical length (in meters).
Type Definitions
-
Object literal with options for the
getLengthorgetAreafunctions.Properties:
Name Type Argument Default Description projectionmodule:ol/proj~ProjectionLike <optional>
'EPSG:3857' Projection of the geometry. By default, the geometry is assumed to be in Web Mercator.
radiusnumber <optional>
6371008.8 Sphere radius. By default, the radius of the earth is used (Clarke 1866 Authalic Sphere).