2

Hi I am creating android application, in which i have to show Custom legends on map(Google map v2). I have searched on google but did not find any useful information.My question is , Is it possible to add legends on googlemap v2. if Yes Please let me know how may i do this ??? Any tutorial or useful links will be helpful.

DeepakPanwar
  • 1,389
  • 14
  • 22

1 Answers1

0

Try this Set a textview on top of a Map Fragment

or

<fragment
        android:id="@+id/map"
        android:layout_width="match_parent"
        android:layout_height="152dp"
        android:layout_weight="0.71"
        class="com.google.android.gms.maps.SupportMapFragment" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="TextView" />
</fragment>
Community
  • 1
  • 1
Aly Ty
  • 1
  • 2