-
public interface MapObjectA common interface for all renderable map objects.
This interface serves as a marker for objects that can be added to a Layer and rendered by a com.google.maps.android.renderer.Renderer. Implementations of this interface represent pure data models and should not hold references to Android SDK objects (like com.google.android.gms.maps.model.Marker).
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public enumMapObject.TypeEnum representing the type of map object.
-
Method Summary
Modifier and Type Method Description abstract MapObject.TypegetType()Gets the type of the map object. abstract BooleangetIsVisible()Gets and sets the visibility of the map object. abstract UnitsetIsVisible(Boolean isVisible)Gets and sets the visibility of the map object. abstract FloatgetZIndex()Gets and sets the z-index of the map object. abstract UnitsetZIndex(Float zIndex)Gets and sets the z-index of the map object. -
-
Method Detail
-
getType
abstract MapObject.Type getType()
Gets the type of the map object.
-
getIsVisible
abstract Boolean getIsVisible()
Gets and sets the visibility of the map object.
-
setIsVisible
abstract Unit setIsVisible(Boolean isVisible)
Gets and sets the visibility of the map object.
-
-
-
-