Soru & Cevap

Android'te gps kullanımı nasıl olur? ...

25.12.2014 - 08:38

Android projem(bulunduğunuz konuma göre en yakın hastaneleri listelemek) için yardım istiyorum kod değil sadece mantık fakat basit düzeyde olursa iyi olur öğrenmeye yeni başladım.

15 Görüntülenme

2 Cevap

Sitedeki sorulara cevap verebilmek için giriş yapın ya da üye olun.

picture-12085-1428260397.jpg
perfect269
26.12.2014 - 11:37

Gps google maps suanlık böyle kullanılır konumunu bulmak icin diger kısmı icin biraz araştırma yap :D

1. sorum gps i  google maps ile kullanmak istiyorsanız :

import com.google.android.gms.maps.CameraUpdateFactory;

import com.google.android.gms.maps.GoogleMap;

import com.google.android.gms.maps.SupportMapFragment;

import com.google.android.gms.maps.model.LatLng;

import com.google.android.gms.maps.model.Marker;

import com.google.android.gms.maps.model.MarkerOptions;

 

public class maps extends FragmentActivity{

    private GoogleMap gMaps;

    protected void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);

        setContentView(R.layout.maps);

         if (gMaps == null) {

            gMaps = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.haritafragment))

                    .getMap();

            

            if (gMaps != null) {

                gMaps.setMyLocationEnabled(true); 

                Location userLocation = gMaps.getMyLocation();

                LatLng myLocation = null;

                if (userLocation != null) {

                    myLocation = new LatLng(userLocation.getLatitude(),

                            userLocation.getLongitude());

                    gMaps.animateCamera(CameraUpdateFactory.newLatLngZoom(myLocation,

                            gMaps.getMaxZoomLevel()-5));

                    

                gMaps.getUiSettings().setMyLocationButtonEnabled(false);

            }

        }

    }

    }

}

Bu kodu ama öncelikle buradaki adım ları izlemelisin :D kolay gelsin sorun olursa dönüş yapabilirsiniz

https://gelecegiyazanlar.turkcell.com.tr/konu/android/egitim/android-301/androidde-haritalar-servisi 

 

picture-30001-1559133408.jpg
mesutgulecen
25.12.2014 - 10:08

Yardımcı olur belki

 

http://developer.android.com/guide/topics/location/strategies.html