Вы можете сделать это, надувая свой пользовательский макет,
Шаг 1. Создайте свой собственный макет.lay_marker.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<ImageView
android:id="@+id/img_marker"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:adjustViewBounds="true"
android:contentDescription="@string/app_name"
android:cropToPadding="false"
android:scaleType="fitXY"
android:src="@drawable/map_car_running" />
<TextView
android:id="@+id/tv_label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/bg_marker_lebel"
android:fontFamily="sans-serif-light"
android:gravity="center"
android:minWidth="40dp"
android:paddingLeft="5dp"
android:paddingRight="5dp"
android:text="text"
android:textColor="@android:color/white" />
</LinearLayout>
Шаг 2. Получение растрового изображения пользовательского маркера
public Bitmap getMarkerIconWithLabel(Context mContext,String label) {
IconGenerator iconGenerator = new IconGenerator(mContext);
View markerView = LayoutInflater.from(mContext).inflate(R.layout.lay_marker, null);
ImageView imgMarker = markerView.findViewById(R.id.img_marker);
TextView tvLabel = markerView.findViewById(R.id.tv_label);
imgMarker.setImageResource(R.drawable.car);
tvLabel.setText(label);
iconGenerator.setContentView(markerView);
iconGenerator.setBackground(null);
return iconGenerator.makeIcon(label);
}
Шаг 3. Применение этого растрового изображения к маркеру
googleMap.addMarker(new MarkerOptions()
.position(new LatLng(lati1,longit1))
.title("HostelM")
.icon(BitmapDescriptorFactory.fromBitmap(this,"Label")));