0

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.

Joshua Dwire
  • 5,415
  • 5
  • 29
  • 50
Abu Saleh Musa
  • 101
  • 1
  • 12

1 Answers1

5

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

Pavel Dudka
  • 20,754
  • 7
  • 70
  • 83