public static interface

MapApi.CustomViews

com.mapsted.map.MapApi.CustomViews
Known Indirect Subclasses

Class Overview

Access/manage customizable UI/UX

Summary

Public Methods
abstract String addViewToMapFragment(String tag, View view)
Add your custom view to the map
abstract View getViewOnMap(String tag)
Gets reference to the view added to the map with that tag
abstract void removeViewFromMap(String tag)
Removes the view with the given tag from map.

Public Methods

public abstract String addViewToMapFragment (String tag, View view)

Add your custom view to the map

Parameters
tag tag that can be used to get or remove this view later.
view your view that will be shown on the map.
Returns
  • Tag of the added view.

public abstract View getViewOnMap (String tag)

Gets reference to the view added to the map with that tag

Parameters
tag view's tag
Returns
  • View or null

public abstract void removeViewFromMap (String tag)

Removes the view with the given tag from map.

Parameters
tag tag of the view that need to be removed from map.