Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to display specific location in Map according to lat,long and also display marker on that particular location. However, i have displayed whole map but not getting specific location.

public class MapActivity extends FragmentActivity {

GoogleMap googleMap;
MarkerOptions markerOptions;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
       setContentView(R.layout.map);

    Intent intent = getIntent();
    String title = intent.getStringExtra("title");
    String lat = intent.getStringExtra("lat");
    String lon = intent.getStringExtra("long");
    double Lon = Double.parseDouble(lon);
    double Lat = Double.parseDouble(lat);

    SupportMapFragment supportMapFragment = (SupportMapFragment)
    getSupportFragmentManager().findFragmentById(R.id.map);

    googleMap = supportMapFragment.getMap();

    googleMap.addMarker(new MarkerOptions()
            .position(new LatLng(Lat, Lon))
            .title(title));
      } }
share|improve this question
Checkout by printing that whether you get the proper lat long in your intent or not ? – GrIsHu Feb 21 at 13:15
well, i am getting lat, long and location properly ! – SoftD'zire Feb 21 at 13:16
You are likely to look into this sample code using Google Maps API v2. This sample is needed to you now, I think. – BBonDoo Feb 22 at 10:23

1 Answer

up vote 1 down vote accepted

Try out as below:

  private Marker myMarker;
    myMarker=googleMap.addMarker(new MarkerOptions()
        .position(new LatLng(Lat, Lon))
        .title(title)
        .icon(BitmapDescriptorFactory.defaultMarker(BitmapDescriptorFactory.HUE_AZURE)));
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.