Skip to content Skip to sidebar Skip to footer

Wanting To Know How To Place A Pinpoint Marker To My Lat, Long Using This Code

I'm trying to find a way to place a pinpoint marker to my lat, long on Google Maps. import com.google.android.maps.GeoPoint; import com.google.android.maps.MapActivity; import com.

Solution 1:

You can use MyLocationOverlay. You just need to add it to your mapView:

mapView.getOverlays().add(new MyLocationOverlay(context,mapView) );

Post a Comment for "Wanting To Know How To Place A Pinpoint Marker To My Lat, Long Using This Code"