Interface IRectangleOptions
- All Superinterfaces:
IOptionsKeys
,java.io.Serializable
public interface IRectangleOptions extends IOptionsKeys
Options for rectangles
- Author:
- swong
-
Field Summary
Fields Modifier and Type Field Description static provided.mixedData.MixedDataKey<ILatLngBounds>
BOUNDS
The bounds of the rectanglestatic provided.mixedData.MixedDataKey<java.lang.Boolean>
CLICKABLE
Indicates whether this Rectangle handles mouse events.static provided.mixedData.MixedDataKey<java.lang.Boolean>
DRAGGABLE
If set to true, the user can drag this rectangle over the map.static provided.mixedData.MixedDataKey<java.lang.Boolean>
EDITABLE
If set to true, the user can edit this rectangle by dragging the control points shown at the corners and on each edge.static provided.mixedData.MixedDataKey<java.lang.String>
FILL_COLOR
The fill color.static provided.mixedData.MixedDataKey<java.lang.Double>
FILL_OPACITY
The fill opacity between 0.0 and 1.0static java.util.UUID
OPTIONS_ID
Unique identifier for this class of options.static provided.mixedData.MixedDataKey<java.lang.String>
STROKE_COLOR
The stroke color.static provided.mixedData.MixedDataKey<java.lang.Double>
STROKE_OPACITY
The stroke opacity between 0.0 and 1.0static provided.mixedData.MixedDataKey<StrokePosition>
STROKE_POSITION
The stroke position.static provided.mixedData.MixedDataKey<java.lang.Integer>
STROKE_WEIGHT
The stroke width in pixels.static provided.mixedData.MixedDataKey<java.lang.Boolean>
VISIBLE
Whether this rectangle is visible on the map.static provided.mixedData.MixedDataKey<java.lang.Double>
ZINDEX
The zIndex compared to other polys. -
Method Summary
Static Methods Modifier and Type Method Description static provided.mixedData.IMixedDataDictionary
makeDefault()
Make a dictionary of the default options for the component.static IOptionsFiller
makeOptionsFiller(ICefUtils cefUtils)
*FOR INTERNAL USE ONLY!!* OWLMAPS DEVELOPER CODE SHOULD *NOT* USE THIS METHOD! Factory to create the IOptionsFiller that converts the component options into their corresponding Javascript Google Map component options.
-
Field Details
-
OPTIONS_ID
static final java.util.UUID OPTIONS_IDUnique identifier for this class of options. Always refer to this field by name and not by its value to ensure compatibility when the codebase is updated as the value of the field may change! -
BOUNDS
The bounds of the rectangle -
CLICKABLE
static final provided.mixedData.MixedDataKey<java.lang.Boolean> CLICKABLEIndicates whether this Rectangle handles mouse events. Defaults to true. -
DRAGGABLE
static final provided.mixedData.MixedDataKey<java.lang.Boolean> DRAGGABLEIf set to true, the user can drag this rectangle over the map. Defaults to false. -
EDITABLE
static final provided.mixedData.MixedDataKey<java.lang.Boolean> EDITABLEIf set to true, the user can edit this rectangle by dragging the control points shown at the corners and on each edge. Defaults to false. -
FILL_COLOR
static final provided.mixedData.MixedDataKey<java.lang.String> FILL_COLORThe fill color. All CSS3 colors are supported except for extended named colors. -
FILL_OPACITY
static final provided.mixedData.MixedDataKey<java.lang.Double> FILL_OPACITYThe fill opacity between 0.0 and 1.0 -
STROKE_COLOR
static final provided.mixedData.MixedDataKey<java.lang.String> STROKE_COLORThe stroke color. All CSS3 colors are supported except for extended named colors. -
STROKE_OPACITY
static final provided.mixedData.MixedDataKey<java.lang.Double> STROKE_OPACITYThe stroke opacity between 0.0 and 1.0 -
STROKE_POSITION
The stroke position. Defaults to StrokePosition.CENTER. This property is not supported on Internet Explorer 8 and earlier. -
STROKE_WEIGHT
static final provided.mixedData.MixedDataKey<java.lang.Integer> STROKE_WEIGHTThe stroke width in pixels. -
VISIBLE
static final provided.mixedData.MixedDataKey<java.lang.Boolean> VISIBLEWhether this rectangle is visible on the map. Defaults to true. -
ZINDEX
static final provided.mixedData.MixedDataKey<java.lang.Double> ZINDEXThe zIndex compared to other polys.
-
-
Method Details
-
makeDefault
static provided.mixedData.IMixedDataDictionary makeDefault()Make a dictionary of the default options for the component.- Returns:
- A dictionary with any default options
-
makeOptionsFiller
*FOR INTERNAL USE ONLY!!* OWLMAPS DEVELOPER CODE SHOULD *NOT* USE THIS METHOD! Factory to create the IOptionsFiller that converts the component options into their corresponding Javascript Google Map component options.- Parameters:
cefUtils
- The IJsUtils created by the system- Returns:
- An IOptionsFiller for this component's options.
-