Represents a circle on the location view. More...
Public Member Functions | |
bool | setPosition (LocationPoint point) |
Method is used to specify the center of the circle. | |
bool | setPositionAnimated (LocationPoint point, double duration, AnimationType type) |
Method is used to move the center of the circle with the specified animation. | |
bool | setColor (double red, double green, double blue, double alpha) |
Method is used to specify the fill color of the circle. | |
bool | setRadius (double radius) |
Method is used to specify the size of the circle. | |
bool | setCollisionEnabled (bool enabled) |
Method is used to enable or disable collision detection for the circle. | |
bool | setBuffer (double width, double height) |
Method is used to specify the buffer size around the circle for collision detection. | |
bool | setOffset (double width, double height) |
Method is used to specify an offset for the circle’s position. | |
bool | setPriority (double priority) |
Method is used to specify the priority of the circle. | |
bool | setOutlineColor (double red, double green, double blue, double alpha) |
Method is used to specify the color of the circle’s outline. | |
bool | setOutlineRadius (double radius) |
Method is used to specify the thickness of the circle’s outline. | |
bool | setOutlineAlpha (double alpha) |
Method is used to specify the opacity of the circle’s outline. | |
int | getId () |
Gets the unique identifier of the map object. | |
MapObjectType | getType () |
Gets the type of the map object. | |
Uint8List | getData () |
Gets the user-defined data associated with the map object. | |
bool | setVisible (bool visible) |
Method is used to specify the visibility of the map object. | |
bool | setInteractive (bool interactive) |
Method is used to specify whether the map object can be interacted with. | |
void | setData (Uint8List data) |
Method is used to set user-defined data for the map object. | |
bool | setTitle (String title) |
Method is used to set the title of the map object. | |
bool | setAlpha (double alpha) |
Method is used to set the opacity of the map object. | |
Represents a circle on the location view.
Referenced from LocationWindow.
Definition at line 25 of file circle_map_object.dart.
|
inherited |
Gets the user-defined data associated with the map object.
|
inherited |
Gets the unique identifier of the map object.
|
inherited |
Gets the type of the map object.
|
inherited |
Method is used to set the opacity of the map object.
alpha | Opacity multiplier. Values below 0 will be set to 0. Values above 1 will be set to 1. Default: 1. |
bool CircleMapObject.setBuffer | ( | double | width, |
double | height ) |
Method is used to specify the buffer size around the circle for collision detection.
width | Width of the buffer in pixels. Default: 0. |
height | Height of the buffer in pixels. Default: 0. |
bool CircleMapObject.setCollisionEnabled | ( | bool | enabled | ) |
Method is used to enable or disable collision detection for the circle.
enabled | Specifies whether collision detection is enabled (true) or disabled (false). Default: false. |
bool CircleMapObject.setColor | ( | double | red, |
double | green, | ||
double | blue, | ||
double | alpha ) |
Method is used to specify the fill color of the circle.
red | Red RGBA component (0 to 1). |
green | Green RGBA component (0 to 1). |
blue | Blue RGBA component (0 to 1). |
alpha | Opacity multiplier (0 to 1). Values below 0 are set to 0. Default: 1. |
|
inherited |
Method is used to set user-defined data for the map object.
data | Data to store in the map object. |
|
inherited |
Method is used to specify whether the map object can be interacted with.
interactive | Specifies whether the object can be picked in the pickMapObjectAt method (true) or not (false). Default: false. |
bool CircleMapObject.setOffset | ( | double | width, |
double | height ) |
Method is used to specify an offset for the circle’s position.
width | Horizontal offset in pixels. |
height | Vertical offset in pixels. |
bool CircleMapObject.setOutlineAlpha | ( | double | alpha | ) |
Method is used to specify the opacity of the circle’s outline.
alpha | Opacity multiplier (0 to 1). Values below 0 are set to 0. Default: 1. |
bool CircleMapObject.setOutlineColor | ( | double | red, |
double | green, | ||
double | blue, | ||
double | alpha ) |
Method is used to specify the color of the circle’s outline.
red | Red RGBA component (0 to 1). |
green | Green RGBA component (0 to 1). |
blue | Blue RGBA component (0 to 1). |
alpha | Opacity multiplier (0 to 1). Values below 0 are set to 0. Default: 1. |
bool CircleMapObject.setOutlineRadius | ( | double | radius | ) |
Method is used to specify the thickness of the circle’s outline.
radius | Thickness of the outline in pixels. |
bool CircleMapObject.setPosition | ( | LocationPoint | point | ) |
Method is used to specify the center of the circle.
point | Metrics coordinates of the center LocationPoint. |
bool CircleMapObject.setPositionAnimated | ( | LocationPoint | point, |
double | duration, | ||
AnimationType | type ) |
Method is used to move the center of the circle with the specified animation.
point | Metrics coordinates of the center LocationPoint. |
duration | Animation duration in seconds. |
type | Animation type AnimationType. Default: CENTER. |
bool CircleMapObject.setPriority | ( | double | priority | ) |
Method is used to specify the priority of the circle.
priority | The priority value for rendering or interaction. Default: 0. |
bool CircleMapObject.setRadius | ( | double | radius | ) |
Method is used to specify the size of the circle.
radius | Radius of the circle in meters. |
|
inherited |
Method is used to set the title of the map object.
title | The title to display on the location view. |
|
inherited |
Method is used to specify the visibility of the map object.
visible | Specifies whether the object is visible (true) or hidden (false). Default: true. |