FMX.Maps.TMapCircleDescriptor.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

class function Create(const Center: TMapCoordinate; const RadiusInMeters: Single): TMapCircleDescriptor; static;

C++

static TMapCircleDescriptor __fastcall Create(const TMapCoordinate &Center, const float RadiusInMeters);

Properties

Type Visibility Source Unit Parent
function public
FMX.Maps.pas
FMX.Maps.hpp
FMX.Maps TMapCircleDescriptor

Description

Creates and initializes an instance of TMapCircleDescriptor.

Create initializes a map circle setting its center with the indicated latitude and longitude and the provided radius in meters.

The Create method takes the following parameters:

Parameter Description
Center Latitude and longitude of the Center of the circle.
RadiusInMeters Radius of the circle expressed in meters.

See Also