0

我知道我可以从谷歌地图服务获得坐标。但是,一旦获得所有坐标,如何获取源和目的地的坐标以将其发送到谷歌地图服务,然后绘制路线?

编辑:

我有这样的事情:

                bmp = new Bitmap(getWidth(), getHeight());
                bmp.createAlpha(Bitmap.ALPHA_BITDEPTH_8BPP);
                Graphics g = Graphics.create(bmp);
                int x1 = -1, y1 = -1, x2 = -1, y2 = -1;
               XYPoint point0 = new XYPoint();
                convertWorldToField(mPoints[0], point0);
                x1=point0.x;
                y1=point0.y;
                g.setColor(Color.BLUE);
                g.fillEllipse(x1, y1, x1, y1 + 1, x1 + 1, y1, 0, 360);

                for (int i = 0; i < mPoints.length; i++) {
                        XYPoint point = new XYPoint();
                        convertWorldToField(mPoints[i], point);
                        x2 = point.x;
                        y2 = point.y;
                        g.setColor(Color.GREEN);
                        g.drawLine(x1, y1, x2, y2);
                        g.fillEllipse(x1, y1, x1, y1 + 1, x1 + 1, y1, 0, 360);
                if(i == mPoints.length-1)
                        {
                            g.setColor(Color.YELLOWGREEN);
                            g.fillEllipse(x1, y1, x1, y1 + 1, x1 + 1, y1, 0, 360);
                        }
                        x1 = x2;
                        y1 = y2;
                }
4

2 回答 2

0

您可以使用地理编码器来获取位置的纬度和经度。Google 在http://code.google.com/apis/maps/documentation/geocoding/上有一份文档。

因此,在您获得两个位置之间的路线后,您最终会得到一个包含路线和坐标的 XML 文件。覆盖 MapField 的paint()方法并用于convertWorldToField()获取要在地图上绘制的位置。从那里它只是简单地从一个位置到下一个位置画线。

于 2011-08-05T13:26:57.780 回答
0

谷歌地图为您计算路线,无需手动进行。使用此语法:

            double xPos = GPSListener.handle().getLocation().getLatitude();
            double yPos = GPSListener.handle().getLocation().getLongitude();
            String sourceAddr = xPos + "," + yPos;
            int moduleHandle = CodeModuleManager.getModuleHandle("GoogleMaps");
            if (moduleHandle != 0) {
                String[] args = { "http://gmm/x?action=ROUT&start=" + sourceAddr + "&end=" + lat + "," + longi };
                ApplicationDescriptor ad = new ApplicationDescriptor(CodeModuleManager.getApplicationDescriptors(moduleHandle)[0], args);
                ApplicationManager.getApplicationManager().runApplication(ad, true);
            } 
于 2011-08-26T15:17:22.933 回答