Android Google Map Marker/label Similar To Latest Traffic Map
I am quite new to using google map on android. So far I found the following code snippet. public void onMapReady(GoogleMap googleMap) { mMap = googleMap; // Add a
Solution 1:
1. Make sure your current location is detected in Google Map
2.Make sure your Google Map has traffic data available for your current location.
2.Make sure your Internet Connection is available for your Devices.
@Override
public void onMapReady(GoogleMap googleMap) {
mMap = googleMap;
mMap.setTrafficEnabled(true);// Traffic line is on in mapview
}
Post a Comment for "Android Google Map Marker/label Similar To Latest Traffic Map"