open class BaseGpsPositionIndicator : GpsIndicator
Base class defining the position indicator that can be added to the map.
BaseGpsPositionIndicator()
Base class defining the position indicator that can be added to the map. |
open fun hide(): Unit |
|
open fun isDimmed(): Boolean |
|
open fun isVisible(): Boolean |
|
open fun setBearing(bearingInDegrees: Double): Unit |
|
open fun setDimmed(dimmed: Boolean): Unit |
|
open fun setDimmedInaccuracyAreaColor(areaColor: Int): Unit |
|
open fun setInaccuracyAreaColor(areaColor: Int): Unit |
|
open fun setLocation(location: Location!): Unit open fun setLocation(latLng: LatLng!, bearingInDegrees: Double, accuracyInMeters: Double, timeInMillis: Long): Unit |
|
open fun show(): Unit |
open class
Default GPS indicator implementation. The GPS position icon is shown without any accuracy radius, when accuracy is less than 10 meters. On the other hand, when accuracy is more than 10000 meters, the indicator is dimmed (gray icon). Otherwise, the radius showing GPS accuracy is visible. |