| com.mapsted.map.MapApi.CustomViews | 
   Known Indirect Subclasses
  
 | 
Access/manage customizable UI/UX
| 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. 
  
   | ||||||||||
Add your custom view to the map
| tag | tag that can be used to get or remove this view later. | 
|---|---|
| view | your view that will be shown on the map. | 
Gets reference to the view added to the map with that tag
| tag | view's tag | 
|---|
Removes the view with the given tag from map.
| tag | tag of the view that need to be removed from map. | 
|---|