Area
Get an area of given coordinates
Last updated
Get an area of given coordinates
Returns the area in meter squared of a polygon.
mapInstance.getArea(coordinates)Required Parameter
Description
Type
coordinates
Array of latitude/longitude. The array must contain at least 3 coordinates.
JSON Array
mapInstance.getArea(
[
{lng: -122.019807, lat: 45.632433},
{lng: -122.019767, lat: 45.632453},
{lng: -122.01971, lat: 45.632472}
])Area value in meter squared
Last updated