如何在不输入位置GPS的情况下使酒吧/餐厅/俱乐部或任何查找器应用程序工作?

时间:2014-11-22 22:21:19

标签: android gps

我想在android中创建一个公共位置查找器。一种方法是输入位置的GPS坐标。但是,是否有任何服务或任何可以为我做的事情,所以我可以将我的代码连接到它?说实话,我不明白定位器应用程序是如何工作的......

public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
mapView = (MapView)findViewById(R.id.mapView);
mapView.setBuiltInZoomControls(true);
mapView.setSatellite(false);
mapView.setStreetView(true);
mapController = mapView.getController();
mapController.setZoom(13);
getLastLocation();
animateToCurrentLocation();}

1 个答案:

答案 0 :(得分:0)

Google Maps API&位置服务可以做到这一点甚至更多。 https://developers.google.com/maps/documentation/android/
https://developer.android.com/google/play-services/location.html

即使没有GPS,也可以获得精确的位置,因为谷歌会收集有关Wi-Fi点和GSM塔的位置数据,然后在位置服务中使用这些信息。