1

I have work for Google map . i want to add Compass in Google map , but in Option menu .

that means when i press the "menu" button then there will be option for Compass Mood On/Off.

How i can do that ? Is there any tutorial or suggestion for this ?

please Help .

j0k
  • 22,600
  • 28
  • 79
  • 90

1 Answers1

0

You have to use MyLocationOverlay provided by the Google Map library. Especialy, have a look at methods:

public boolean isCompassEnabled();
public boolean enableCompass();
public void disableCompass();

For the menu, you can have a look at https://developer.android.com/guide/topics/ui/menus.html#ChangingTheMenu (or search stackoverflow...)

OcuS
  • 5,320
  • 3
  • 36
  • 45