CircleMapObject class abstract
Represents a circle on the location view. Referenced from LocationWindow.
- Implemented types
- Implementers
Constructors
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
getData(
) → Uint8List -
Gets the user-defined data associated with the map object.
Returns The data stored in the map object.
inherited
-
getId(
) → int -
Gets the unique identifier of the map object.
Returns The unique identifier of the map object.
inherited
-
getType(
) → MapObjectType -
Gets the type of the map object.
Returns The type of the map object MapObjectType.
inherited
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
setAlpha(
double alpha) → bool -
Method is used to set the opacity of the map object.
alphaOpacity multiplier. Values below 0 will be set to 0. Values above 1 will be set to 1. Default: 1. Returns true if the operation is successful, false otherwise.inherited -
setBuffer(
double width, double height) → bool -
Method is used to specify the buffer size around the circle for collision detection.
widthWidth of the buffer in pixels. Default: 0.heightHeight of the buffer in pixels. Default: 0. Returns true if the operation is successful, false otherwise. -
setCollisionEnabled(
bool enabled) → bool -
Method is used to enable or disable collision detection for the circle.
enabledSpecifies whether collision detection is enabled (true) or disabled (false). Default: false. Returns true if the operation is successful, false otherwise. -
setColor(
double red, double green, double blue, double alpha) → bool -
Method is used to specify the fill color of the circle.
redRed RGBA component (0 to 1).greenGreen RGBA component (0 to 1).blueBlue RGBA component (0 to 1).alphaOpacity multiplier (0 to 1). Values below 0 are set to 0. Default: 1. Returns true if the operation is successful, false otherwise. -
setData(
Uint8List data) → void -
Method is used to set user-defined data for the map object.
dataData to store in the map object.inherited -
setInteractive(
bool interactive) → bool -
Method is used to specify whether the map object can be interacted with.
interactiveSpecifies whether the object can be picked in thepickMapObjectAtmethod (true) or not (false). Default: false. Returns true if the operation is successful, false otherwise.inherited -
setOffset(
double width, double height) → bool -
Method is used to specify an offset for the circle’s position.
widthHorizontal offset in pixels.heightVertical offset in pixels. Returns true if the operation is successful, false otherwise. -
setOutlineAlpha(
double alpha) → bool -
Method is used to specify the opacity of the circle’s outline.
alphaOpacity multiplier (0 to 1). Values below 0 are set to 0. Default: 1. Returns true if the operation is successful, false otherwise. -
setOutlineColor(
double red, double green, double blue, double alpha) → bool -
Method is used to specify the color of the circle’s outline.
redRed RGBA component (0 to 1).greenGreen RGBA component (0 to 1).blueBlue RGBA component (0 to 1).alphaOpacity multiplier (0 to 1). Values below 0 are set to 0. Default: 1. Returns true if the operation is successful, false otherwise. -
setOutlineRadius(
double radius) → bool -
Method is used to specify the thickness of the circle’s outline.
radiusThickness of the outline in pixels. Returns true if the operation is successful, false otherwise. -
setPosition(
LocationPoint point) → bool -
Method is used to specify the center of the circle.
pointMetrics coordinates of the center LocationPoint. Returns true if the operation is successful, false otherwise. -
setPositionAnimated(
LocationPoint point, double duration, AnimationType type) → bool -
Method is used to move the center of the circle with the specified animation.
pointMetrics coordinates of the center LocationPoint.durationAnimation duration in seconds.typeAnimation type AnimationType. Default: CENTER. Returns true if the operation is successful, false otherwise. -
setPriority(
double priority) → bool -
Method is used to specify the priority of the circle.
priorityThe priority value for rendering or interaction. Default: 0. Returns true if the operation is successful, false otherwise. -
setRadius(
double radius) → bool -
Method is used to specify the size of the circle.
radiusRadius of the circle in meters. Returns true if the operation is successful, false otherwise. -
setTitle(
String title) → bool -
Method is used to set the title of the map object.
titleThe title to display on the location view. Returns true if the operation is successful, false otherwise.inherited -
setVisible(
bool visible) → bool -
Method is used to specify the visibility of the map object.
visibleSpecifies whether the object is visible (true) or hidden (false). Default: true. Returns true if the operation is successful, false otherwise.inherited -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited