仅使用互联网获取纬度和经度

时间:2016-04-11 13:59:57

标签: android gps latitude-longitude locationmanager

//        GET LATITUDE AND LONGITUDE BY INTERNET
        LocationManager lManager = (LocationManager)this.getSystemService(Context.LOCATION_SERVICE);
        boolean netEnabled = lManager.isProviderEnabled(LocationManager.NETWORK_PROVIDER);
        if (netEnabled) {
            lManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 0, 0, this);
            Location location = lManager.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
            if (location != null)
            {
                latitude = location.getLatitude();
                longitude = location.getLongitude();
            }
        }

我正在尝试只使用互联网获取lat和long。上面的代码只有在我打开位置时才有效。我需要改变什么?

0 个答案:

没有答案