Package provided.owlMaps.general
Interface IVisibleMapObject
- All Known Subinterfaces:
ICircle
,ICircleWrapped
,IGroundOverlay
,IGroundOverlayWrapped
,IInfoWindow
,IInfoWindowWrapped
,IMapLayer
,IMarker
,IMarkerWrapped
,IPolygon
,IPolygonWrapped
,IPolyline
,IPolylineWrapped
,IRectangle
,IRectangleWrapped
,IVisibleMapObjectWrapped
public interface IVisibleMapObject
*** FOR INTERNAL USE ONLY!! DEVELOPER CODE SHOULD NEVER DIRECTLY INSTANTIATE THIS INTERFACE! ***
A MapObject that has a notion of visibility
A MapObject that has a notion of visibility
- Author:
- swong
-
Method Summary
Modifier and Type Method Description boolean
getVisible()
Gets the object's current visibilityvoid
setVisible(boolean isVisible)
Set this object's visibility
-
Method Details
-
setVisible
void setVisible(boolean isVisible)Set this object's visibility- Parameters:
isVisible
- True if visible, false otherwise
-
getVisible
boolean getVisible()Gets the object's current visibility- Returns:
- true if the object is visible, false otherwise.
-