1
我想從我的應用程序調用內置的地圖應用程序。我碰到this link。這個網頁也給了我this link我可以真正得到我想要的東西。我知道地理位置:經緯度?z =放大android把我帶到我目前的位置
geo:latitude,longitude?z=zoom
仍處於開發模式。
我的問題是,當我使用它,它需要到所需的位置,但然後轉移我到我目前的位置。
這裏是一塊代碼,我使用它
String uri = String.format("geo:%f,%f?z=18",(float)(latitude /1E6),(float)(longitude/1E6));
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(uri));
startActivity(intent);
我怎樣才能解決呢?
什麼是lat和長值也可以粘貼您的代碼 – 2012-04-28 13:07:18
提供足夠的代碼,你會得到一個解決方案 – 2012-04-28 13:11:42