문제

I have just seen a video in youtube.

I want use BubbleIconFactory in map v2, but BubbleIconFactory is showing as deprecated in eclipse.

I don't how to use this library.

도움이 되었습니까?

해결책

if you look into the source code - this class does nothing and indeed deprecated :) https://github.com/googlemaps/android-maps-utils/blob/master/library/src/com/google/maps/android/ui/BubbleIconFactory.java

package com.google.maps.android.ui;

/**
 * Use {@link IconGenerator} instead.
 */
@Deprecated
public class BubbleIconFactory {
}

I suppose you need to use equivalent to this class: IconGenerator

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top