Package | Description |
---|---|
com.here.android.mpa.mapping |
The mapping
package provides classes, interfaces, and enumerations that display an
interactive map, and related functionality that allows your application
to create and add map content.
|
Modifier and Type | Class and Description |
---|---|
class |
MapCircle
Represents a
MapObject in the shape of a circle. |
class |
MapContainer
Represents a container that determines the stacking order of objects on a
Map . |
class |
MapMarker
Represents a marker used to display an icon at a geographical position on a map.
|
class |
MapPolygon
A graphical representation of a
GeoPolygon to be rendered on a map. |
class |
MapPolyline
A graphical representation of a
GeoPolyline that
can be rendered on a map. |
class |
MapRoute
|
Modifier and Type | Method and Description |
---|---|
MapObject |
MapObject.resetVisibleMask(boolean set)
Resets this
MapObject to be either visible or invisible at all zoom levels. |
MapObject |
MapCircle.setVisible(boolean isVisible)
Sets whether this
MapObject is visible. |
MapObject |
MapObject.setVisible(boolean isVisible)
Sets whether the visibility of the
MapObject on the map is enabled. |
MapObject |
MapPolygon.setVisible(boolean isVisible)
Sets whether this
MapObject is visible. |
MapObject |
MapObject.setVisible(int level,
boolean isVisible)
Sets whether this
MapObject is visible for the specified zoom level, if enabled. |
MapObject |
MapObject.setVisible(int levelStart,
int levelEnd,
boolean isVisible)
Sets whether this
MapObject is visible for the specified range of zoom levels. |
MapObject |
MapObject.setVisibleMask(int level)
Sets this
MapObject to be visible at the specified zoom level. |
MapObject |
MapObject.setVisibleMask(int levelStart,
int levelEnd)
Sets this
MapObject to be visible at the specified range of zoom levels. |
MapObject |
MapObject.setZIndex(int index)
Sets a z-index (stacking order) value for this
MapObject . |
MapObject |
MapObject.unsetVisibleMask(int level)
Sets this
MapObject to be invisible at the specified zoom level. |
MapObject |
MapObject.unsetVisibleMask(int levelStart,
int levelEnd)
Sets this
MapObject to be invisible at the specified range of zoom levels. |
Modifier and Type | Method and Description |
---|---|
java.util.List<MapObject> |
MapContainer.getAllMapObjects()
Returns the list of all
MapObject objects within this MapContainer . |
Modifier and Type | Method and Description |
---|---|
boolean |
Map.addMapObject(MapObject object)
Adds a
MapObject to this Map . |
boolean |
MapContainer.addMapObject(MapObject object)
Adds a
MapObject to this MapContainer . |
boolean |
Map.removeMapObject(MapObject object)
Removes a
MapObject from this Map . |
boolean |
MapContainer.removeMapObject(MapObject object)
Removes the specified
MapObject from this MapContainer . |
Modifier and Type | Method and Description |
---|---|
boolean |
Map.addMapObjects(java.util.List<MapObject> objects)
|
boolean |
Map.removeMapObjects(java.util.List<MapObject> objects)
|