geodesic property

bool geodesic
inherited

When true, edges of the polygon are interpreted as geodesic and will follow the curvature of the Earth. When false, edges of the polygon are rendered as straight lines in screen space.

Implementation

bool get geodesic=>_geodesic;
void geodesic=(bool value)
inherited

Implementation

set geodesic(bool value){
  _geodesic=value;
  _sendData('setPloyGeodesic', {'geodesic':value});
}