Googlemap Api ile bulunduğum konumu gösteremiyorum
09.05.2017 - 10:59
Merhaba yazdığım android uygulamasında bulunduğum konumu göstermem gerekiyor ama uygulamayı açtığımda bulunduğum konumu hiç bir şekilde gösteremiyorum yardımcı olursanız sevinirim kodlar aşağıdaki gibi;
public void onMapReady(GoogleMap googleMap) {
googleHarita = googleMap;
googleHarita.setMapType(GoogleMap.MAP_TYPE_NORMAL);
googleHarita.getUiSettings().setMyLocationButtonEnabled(true);
if (ActivityCompat.checkSelfPermission(this, android.Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED && ActivityCompat.checkSelfPermission(this, android.Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
// TODO: Consider calling
// ActivityCompat#requestPermissions
// here to request the missing permissions, and then overriding
// public void onRequestPermissionsResult(int requestCode, String[] permissions,
// int[] grantResults)
// to handle the case where the user grants the permission. See the documentation
// for ActivityCompat#requestPermissions for more details.
return;
}
googleHarita.setMyLocationEnabled(true);
}
17
Görüntülenme
0 Beğeni