Geocoder was a pain to try and learn through documentation. This video was really helpful, thanks.
@vaibhavbhardwaj68994 жыл бұрын
Thanks I was looking for it
@DiqTeqa4 жыл бұрын
How to solve enable billing, when use autocomplete places fragment?
@poulominandy13444 жыл бұрын
Really nice video.....Very well explained.... Can you make a video on fetching spatial data from server?
@shabeenmhmd62194 жыл бұрын
Your video's help me a lot . Thanks
@mafiacodes4 жыл бұрын
Subscribe like share
@nishant_j4 жыл бұрын
Very helpful, please make more videos on maps, there are not many out here.
@mafiacodes4 жыл бұрын
Thanks, will do!
@balajih22144 жыл бұрын
Nice video brother keep doing more videos
@mafiacodes4 жыл бұрын
Subscribe like share
@yoreneu12944 жыл бұрын
Hey man Have you ever met the problem in this part like "java.io.IOException: grpc failed at android.location.Geocoder.getFromLocation"? I have not found any way to solve that.
@mafiacodes4 жыл бұрын
I think I got this thing, dun remember exactly what I did but probably grpc is a http/2 thing, so try to add internet permissions to manifest.
@AbdulSamad-yu1zn4 жыл бұрын
V Nycly explained. Also make a video for live location with moving marker 🙂.. Just like a Rider Tracking location marker.. I meana live tracking.
@mafiacodes4 жыл бұрын
Coming in future videos
@AbdulSamad-yu1zn4 жыл бұрын
@@mafiacodes Waiting 🙂
@zibrankhan61554 жыл бұрын
GEO FENCING TUTORIAL PLEASE
@mafiacodes4 жыл бұрын
Will be makin in future videos
@harshsharma-hw1bm4 жыл бұрын
Sir my geocoder is giving a system everytime i try to add marker using latlng or everytime i get location from name. My code goes in the catch block whenever i try to use geocoder What could be the possible reason
@mafiacodes4 жыл бұрын
What error is printed in console
@harshsharma-hw1bm4 жыл бұрын
@@mafiacodes I really appreciate you replied. I have absolutely no issue in first 5 6 attempts but suddenly I start getting this is log cat com.example.geofencing W/DynamiteModule: Local module descriptor class for com.google.android.gms.googlecertificates not found. com.example.geofencing W/zygote: Skipping duplicate class check due to unrecognized classloader com.example.geofencing D/OnMapReady: onMapReady: in catch block com.example.geofencing W/System.err: java.io.IOException: grpc failed I have put the following code in OnMapReady class and I am getting into catch block after the geocoder.getFromLocationName(.....) try { List addresses= null; addresses = geocoder.getFromLocationName("Noida", 1); if (addresses.size() > 0) { Address address = addresses.get(0); Log.d("OnMapReady", "" + address.toString()); LatLng latLng = new LatLng(address.getLatitude(), address.getLongitude()); MarkerOptions markerOptions = new MarkerOptions().position(latLng).title(address.getLocality()).snippet("Start Location").draggable(true); mMap.addMarker(markerOptions); mMap.moveCamera(CameraUpdateFactory.newLatLngZoom(latLng, 15)); enabeleUserLocation(); } } catch (IOException e) { Log.d("OnMapReady", "onMapReady: in catch block "); e.printStackTrace(); } }
@harshsharma-hw1bm4 жыл бұрын
@@mafiacodes There is no error as such in console. My app is not crashing or anything it was giving me locations earlier but I don't know why it suddenly stopped. I am using the emulator only. I would be really thankful to you if you reply to the query
@mafiacodes4 жыл бұрын
Add the key properly
@prasanthsanjeevi25634 жыл бұрын
Hi is distance matrix api is paid or free?
@mafiacodes4 жыл бұрын
I guess free for a limited queries.
2 жыл бұрын
help, i got networkonmain exception at geocoder.getfromlocation