GoogleMap Control v6.0
Declaration Syntax
Members
Inheritance Hierarchy
Assembly: Artem.Google (Module: Artem.Google) Version: 6.0.0.0 (6.0.11322.1118)
This object defines the marker shape to use in determination of a marker's clickable region.
The shape consists of two properties — type and coord — which define the general type of marker
and coordinates specific to that type of marker.

C# | Visual Basic |
public class MarkerShape : IScriptDataConverter
Public Class MarkerShape _ Implements IScriptDataConverter

All Members | Constructors | Methods | Properties | ||
|
|
|
Icon | Member | Description |
---|---|---|
![]() |
MarkerShape()()()() |
Initializes a new instance of the MarkerShape class
|
![]() |
Coords |
The format of this attribute depends on the value of the type and follows the w3 AREA coords
specification found at http://www.w3.org/TR/REC-html40/struct/objects.html#adef-coords.
Coords is an array of integers that specify the pixel position of the shape relative
to the top-left corner of the target image.
The coordinates depend on the value of type as follows:
- circle: coord is [x1,y1,r] where x1,y2 are the coordinates of the center of the circle, and r is the radius of the circle.
- poly: coord is [x1,y1,x2,y2...xn,yn] where each x,y pair contains the coordinates of one vertex of the polygon.
- rect: coord is [x1,y1,x2,y2] where x1,y1 are the coordinates of the upper-left corner of the rectangle and x2,y2 are the coordinates of the lower-right coordinates of the rectangle.
|
![]() |
Equals(Object) | (Inherited from Object.) |
![]() |
Finalize()()()() | Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from Object.) |
![]() ![]() |
FromScriptData(IDictionary<(Of <<'(String, Object>)>>)) |
Retrieves an instance from script data.
|
![]() |
GetHashCode()()()() | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() |
GetType()()()() | Gets the Type of the current instance. (Inherited from Object.) |
![]() |
MemberwiseClone()()()() | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() |
ToScriptData()()()() |
Returns the instance as a script data.
|
![]() |
ToString()()()() | (Inherited from Object.) |
![]() |
Type |
Describes the shape's type and can be circle, poly or rect.
|

Object | |
![]() |
MarkerShape |