1
我發送座標到谷歌地圖,它顯示了我想要的位置的地圖。但它不會顯示指定給定座標的精確位置。我應該改變什麼?谷歌地圖不顯示指針
geoUriString = "geo:"+co+"?z=15";
Uri geoUri = Uri.parse(geoUriString);
Intent map = new Intent(Intent.ACTION_VIEW, geoUri);
startActivity(map);
其中co
是 - 50.444906, 30.531149
'co'的值是什麼樣的? – CommonsWare
co是50.444906,30.531149 – Yarh