geodesic property Null safety
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;
inherited
Implementation
set geodesic(bool value){
_geodesic=value;
_sendData('setPloyGeodesic', {'geodesic':value});
}