Android-谷歌地图 V2 : Trace route from current position to an other destination

标签 android google-maps geolocation gps android-location

我从这个例子开始,绘制两个地址之间的路线,由用户输入。这是工作。 http://blog.rolandl.fr/1357-android-des-itineraires-dans-vos-applications-grace-a-lapi-google-direction

但现在我想绘制一条从我当前位置到其他目的地的路线,由用户输入。 我的问题是,在这种情况下,我不知道如何检索当前位置。 我尝试过这样做:

LocationManager locationmanager=(LocationManager)this.getSystemService(LOCATION_SERVICE);
final double longitude=locationmanager.getLongitude();
final double latitude=locationmanager.getLatitude();

但是它不会起作用......我想我正在混合我找到的每个例子,而且它根本不好。

你能帮我吗?

这是我的MapActivity: 接收用户在我的 MainActivity 中输入的 2 个地址 公共(public)类 MapActivity 扩展 Activity 实现 LocationListener { 私有(private) GoogleMap 谷歌地图;

    protected void onCreate(final Bundle savedInstanceState) 
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_map);

        // Recuperation des composants graphiques
        googlemap = ((MapFragment)getFragmentManager().findFragmentById(R.id.map)).getMap();

        //Recuperations des adresses depart-arrivee
        // RETRIEVE DEPARTURE AND DESTINATION ADDRESS
        /*
         * For editDepart, I would like to replace it by my Current location
         */
        final String editDepart = getIntent().getStringExtra("DEPART");
        final String editArrivee = getIntent().getStringExtra("ARRIVEE");       

        /* Appel de la méthode asynchrone // ASYNCHRONOUS METHOD
         * ATTENTION : Il faut que ItineraireTask soit extends AsyncTask<Void, Integer, Boolean>
         * Sinon, on ne pourra pas utilise la methode execute() */
        new ItineraireTask(this, googlemap, editDepart, editArrivee).execute();

    }
}

这是我的ItineraireTask:

    public class ItineraireTask extends AsyncTask<Void, Integer, Boolean> 
{
    private static final String TOAST_MSG = "Calcul de l'itinéraire en cours";
    private static final String TOAST_ERR_MAJ = "Impossible de trouver un itinéraire";

    private Context context;
    private GoogleMap gMap;
    private String editDepart;
    private String editArrivee;
    private final ArrayList<LatLng> lstLatLng = new ArrayList<LatLng>();

    /** CONSTRUCTEUR **/
    public ItineraireTask(final Context context, final GoogleMap gMap, final String editDepart, final String editArrivee) 
    {
        this.context = context;
        this.gMap= gMap;
        this.editDepart = editDepart;
        this.editArrivee = editArrivee;
    }    

    protected void onPreExecute() 
    {
        Toast.makeText(context, TOAST_MSG, Toast.LENGTH_LONG).show();
    }

    protected Boolean doInBackground(Void... params) 
    {
        try 
        {
            //Construction de l'url à appeler          
            final StringBuilder url = new StringBuilder("http://maps.googleapis.com/maps/api/directions/xml?sensor=false&language=fr");
            url.append("&origin=");
            url.append(editDepart.replace(' ', '+'));
            url.append("&destination=");
            url.append(editArrivee.replace(' ', '+'));

            //Appel du web service
            final InputStream stream = new URL(url.toString()).openStream();

            //Traitement des données
            final DocumentBuilderFactory documentBuilderFactory = DocumentBuilderFactory.newInstance();
            documentBuilderFactory.setIgnoringComments(true);

            final DocumentBuilder documentBuilder = documentBuilderFactory.newDocumentBuilder();

            final Document document = documentBuilder.parse(stream);
            document.getDocumentElement().normalize();

            //On récupère d'abord le status de la requête
            final String status = document.getElementsByTagName("status").item(0).getTextContent();
            if(!"OK".equals(status)) 
            {
                return false;
            }

            //On récupère les steps
            final Element elementLeg = (Element) document.getElementsByTagName("leg").item(0);
            final NodeList nodeListStep = elementLeg.getElementsByTagName("step");
            final int length = nodeListStep.getLength();

            for(int i=0; i<length; i++) 
            {       
            final Node nodeStep = nodeListStep.item(i); 
                if(nodeStep.getNodeType() == Node.ELEMENT_NODE) 
                {
                    final Element elementStep = (Element) nodeStep;

                    //On décode les points du XML
                    decodePolylines(elementStep.getElementsByTagName("points").item(0).getTextContent());
                }
            }
            return true;           
        }
        catch(final Exception e) 
        {
            return false;
        }
    }


    /** METHODE QUI DECODE LES POINTS EN LAT-LONG**/
    private void decodePolylines(final String encodedPoints) 
    {
        int index = 0;
        int lat = 0, lng = 0;

        while (index < encodedPoints.length()) 
        {
            int b, shift = 0, result = 0;

            do 
            {
                b = encodedPoints.charAt(index++) - 63;
                result |= (b & 0x1f) << shift;
                shift += 5;
            } while (b >= 0x20);

            int dlat = ((result & 1) != 0 ? ~(result >> 1) : (result >> 1));
            lat += dlat;
            shift = 0;
            result = 0;

            do 
            {
                b = encodedPoints.charAt(index++) - 63;
                result |= (b & 0x1f) << shift;
                shift += 5;
            } while (b >= 0x20);

            int dlng = ((result & 1) != 0 ? ~(result >> 1) : (result >> 1));
            lng += dlng; 
            lstLatLng.add(new LatLng((double)lat/1E5, (double)lng/1E5));
        }
    }


    protected void onPostExecute(final Boolean result) 
    {   
        if(!result) 
        {
            Toast.makeText(context, TOAST_ERR_MAJ, Toast.LENGTH_SHORT).show();
        }
        else 
        {
            //On déclare le polyline, c'est-à-dire le trait (ici bleu) que l'on ajoute sur la carte pour tracer l'itinéraire
            final PolylineOptions polylines = new PolylineOptions();
            polylines.color(Color.BLUE);

            //On construit le polyline
            for(final LatLng latLng : lstLatLng)
            {
                polylines.add(latLng);
            }        
            //On déclare un marker vert que l'on placera sur le départ
            final MarkerOptions markerA = new MarkerOptions();
            markerA.position(lstLatLng.get(0));
            markerA.icon(BitmapDescriptorFactory.defaultMarker(BitmapDescriptorFactory.HUE_GREEN));

            //On déclare un marker rouge que l'on mettra sur l'arrivée
            final MarkerOptions markerB = new MarkerOptions();
            markerB.position(lstLatLng.get(lstLatLng.size()-1));
            markerB.icon(BitmapDescriptorFactory.defaultMarker(BitmapDescriptorFactory.HUE_RED));

            //On met à jour la carte
            gMap.moveCamera(CameraUpdateFactory.newLatLngZoom(lstLatLng.get(0), 10));
            gMap.addMarker(markerA);
            gMap.addPolyline(polylines);
            gMap.addMarker(markerB);
        }
    }
}

提前感谢您!

最诚挚的问候,

bean 腐

最佳答案

这是我就此主题撰写的一篇博客文章,可以帮助您解决此问题:

Google Maps API V2 Draw Directions

有一个示例项目可供您下载和使用。

关于Android-谷歌地图 V2 : Trace route from current position to an other destination,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20332357/

相关文章:

javascript - map 应以一个点为中心,并且最近的标记应可见

java - 我如何知道 Long.MAX_VALUE 达到 'long' 值

Android 浏览器对 HTML 和 CSS 的限制

android - 无法将android库上传到JitPack.io。无法应用插件[id 'com.android.internal.version-check']

android - 如何在 RecyclerView.Adapter 中使用共享首选项?

javascript - 根据人们查看的位置提供图像?

reactjs - 如何在React应用程序中获取谷歌地图api输入字段的状态更新

android - 用户移动时在 Android 谷歌地图中绘制多段线

php - 有没有可以检测 PHP 访问者所在国家/地区的 Web 服务?

php - Geo Coding Address - 获取某个地址的分区(Google API)