我花了很多時間找到一個在谷歌地圖中繪製2點之間的路徑的工作示例。代碼示例 - 谷歌地圖在Android
我終於找到一個,但它不是繪製路徑。
有人可以幫助我理解爲什麼(或給我另一個代碼示例)? 這是代碼:
https://github.com/frogermcs/RoutePathExample
謝謝。
我花了很多時間找到一個在谷歌地圖中繪製2點之間的路徑的工作示例。代碼示例 - 谷歌地圖在Android
我終於找到一個,但它不是繪製路徑。
有人可以幫助我理解爲什麼(或給我另一個代碼示例)? 這是代碼:
https://github.com/frogermcs/RoutePathExample
謝謝。
此鏈接解釋瞭如何更清晰地做到這一點 http://csie-tw.blogspot.in/2009/06/android-driving-direction-route-path.html 您是否知道谷歌地球kml? https://developers.google.com/kml/documentation/kml_tut 我曾經使用它在Google地圖上繪製從1點到另一點的路線。一旦你分析它,你可以描繪出這些點作爲 mapView.getProjection().toPixels(start, screenPts);
//---add the marker---
Bitmap bmp = BitmapFactory.decodeResource(getResources(), R.drawable.pin);
canvas.drawBitmap(bmp, screenPts.x, screenPts.y, null);
Point screenPts2 = new Point();
mapView.getProjection().toPixels(end, screenPts2);
//---add the marker---
Bitmap bmp2 = BitmapFactory.decodeResource(getResources(), R.drawable.pin);// pin is a resource you have to add
canvas.drawBitmap(BMP2,screenPts2.x,screenPts2.y,NULL);
這樣做是否完成? – Youddh
看到這個以前的帖子,它看起來像相同的主題:http://stackoverflow.com/questions/2176397/drawing-a-line-path-on-google-maps – crocboy