Kullanıcının coğrafi konumunu getMyLocation() ile görmesi gereken bir uygulama oluşturuyorum, ancak bu işlem null. Bunun için bir çözüm var, çünkü getMyLocation() yönteminin her zaman boş döndüğünü okudum. Google Haritalar’da yeniyim, bu yüzden herhangi bir yardım takdir edilecektir!Geçerli konumumu Google Haritalar API V2'de nasıl edinebilirim? V2
Kodu:
GoogleMap map = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map)).getMap();
map.setMapType(GoogleMap.MAP_TYPE_HYBRID);
map.setMyLocationEnabled(true);
Location myLocation = map.getMyLocation();
if(myLocation != null){
helper.showToast("Latitude: " + myLocation.getLatitude() + "\nLongitude: " + myLocation.getLongitude());
}
Bazı kod ekleyin. Neyi yanlış yaptığınızı nasıl tahmin etmeliyiz? – rekire
http://androidroadies.blogspot.in/2013/09/showing-current-location-in-google-maps.html – Roadies