Как добавить более одного растрового значка в маркеры для Карт Google? - PullRequest
0 голосов
/ 04 декабря 2018
IconGenerator iconFactory = new IconGenerator(this);
hM = googleMap.addMarker(new MarkerOptions()
    .position(new LatLng(lati1,longit1))
    .title("HostelM")
    .icon(BitmapDescriptorFactory.fromResource(R.drawable.parkingmarker)));

hM.setIcon(BitmapDescriptorFactory.fromResource(R.drawable.parkingmarker));

Я пытаюсь добавить собственный маркер и текст значка одновременно на одном маркере.Но он показывает только мой пользовательский маркер или мой текст.Любое решение или альтернатива для того же?

Ответы [ 2 ]

0 голосов
/ 11 апреля 2019

Попробуйте ниже код

LatLng source, LatLng dest;

LatLngBounds.Builder builder = new LatLngBounds.Builder();
IconGenerator iconFactory = new IconGenerator(this);
iconFactory.setRotation(0);
iconFactory.setContentRotation(0);


MarkerOptions markerOptions = new MarkerOptions();
markerOptions.position(source);
iconFactory.setStyle(IconGenerator.STYLE_BLUE);
markerOptions.icon(BitmapDescriptorFactory.fromBitmap(iconFactory.makeIcon("Label 1")));
map.addMarker(markerOptions);
builder.include(source);

markerOptions = new MarkerOptions();
markerOptions.position(dest);
iconFactory.setStyle(IconGenerator.STYLE_GREEN);
markerOptions.icon(BitmapDescriptorFactory.fromBitmap(iconFactory.makeIcon("Label 2")));
map.addMarker(markerOptions);
builder.include(dest);

LatLngBounds bounds = builder.build();

int width = mSupportMapFragment.getView().getMeasuredWidth();
int height = mSupportMapFragment.getView().getMeasuredHeight();
int padding = (int) (width * 0.15);

CameraUpdate update = CameraUpdateFactory.newLatLngBounds(bounds, width, height, padding);

map.animateCamera(update);
0 голосов
/ 21 декабря 2018

Вы можете сделать это, надувая свой пользовательский макет,

Шаг 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")));
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...