🗺️
【Android】Google Map のマーカーの色を変える
MarkerOptions#icon
にBitmapDescriptor
を渡します。
実装例
val latLng = LatLng(0.0, 0.0)
val bitmapDescriptor = BitmapDescriptorFactory.defaultMarker(BitmapDescriptorFactory.HUE_BLUE)
MarkerOptions().position(latLng).icon(bitmapDescriptor)
色の種類
BitmapDescriptorFactory
には以下の色があります。
HUE_RED | HUE_ORANGE |
---|---|
HUE_YELLOW | HUE_GREEN |
---|---|
HUE_CYAN | HUE_AZURE |
---|---|
HUE_BLUE | HUE_VIOLET |
---|---|
HUE_MAGENTA | HUE_ROSE |
---|---|
Discussion