2012-07-11 35 views
0

如何通过调用意图得到附近我的位置restuarants,该怎么做,我通过类似的意图,我需要从谷歌地图位置通过Intent搜索Restuarants?

Intent intent = new Intent(android.content.Intent.ACTION_VIEW, 
       Uri.parse("http://maps.google.com/maps?saddr=&daddr=")); 
       startActivity(intent); 

类似的方式做了谷歌地图是没有任何直接的HTTP链接以获得restuarants。 帮我任何一个..

回答