即使安卓设备离线,谷歌地图如何获取地址
Posted
技术标签:
【中文标题】即使安卓设备离线,谷歌地图如何获取地址【英文标题】:How google map fetching address even android device is offline 【发布时间】:2018-03-17 21:27:06 【问题描述】:我刚刚创建了一个带有一些标记的地图活动,当点击标记标题获取标记位置的地址以用于教育目的时,一切正常。
即使设备没有连接到互联网,它也会获取地址。我没有在清单中给予互联网许可。
ACCESS_FINE_LOCATION
是授予该应用程序的唯一权限。
我的问题是:即使设备处于离线模式,应用程序如何获取地址?它背后的想法或技术是什么!!?
注意: 我从未在我的代码中使用过getLastKnownLocation
方法。 Wifi 和 gps 都关闭了,也没有插入 SIM 卡。
这是我的代码:
public class MapsActivity extends FragmentActivity implements OnMapReadyCallback
private GoogleMap mMap;
TextView mapPosition;
@Override
protected void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_maps);
mapPosition = (TextView) findViewById(R.id.textplace);
// Obtain the SupportMapFragment and get notified when the map is ready to be used.
SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager()
.findFragmentById(R.id.map);
mapFragment.getMapAsync(this);
/**
* Manipulates the map once available.
* This callback is triggered when the map is ready to be used.
* This is where we can add markers or lines, add listeners or move the camera. In this case,
* we just add a marker near Sydney, Australia.
* If Google Play services is not installed on the device, the user will be prompted to install
* it inside the SupportMapFragment. This method will only be triggered once the user has
* installed Google Play services and returned to the app.
*/
@Override
public void onMapReady(GoogleMap googleMap)
mMap = googleMap;
// double lat = Double.valueOf(8.524139);
// Add a marker in Sydney and move the camera
LatLng sydney = new LatLng(-34, 151); LatLng ind = new LatLng(8.524139, 76.936638);
mMap.addMarker(new MarkerOptions().position(sydney).title("Marker in Sydney"));
mMap.addMarker(new MarkerOptions().position(ind).title("Marker in Trivandrum"));
mMap.moveCamera(CameraUpdateFactory.newLatLng(ind));
mMap.setOnMarkerClickListener(new GoogleMap.OnMarkerClickListener()
@Override
public boolean onMarkerClick(Marker marker)
return false;
);
mMap.setOnInfoWindowClickListener(new GoogleMap.OnInfoWindowClickListener()
@Override
public void onInfoWindowClick(Marker marker)
Geocoder geocoder;
List<Address> addresses;
geocoder = new Geocoder(MapsActivity.this, Locale.getDefault());
try
addresses = geocoder.getFromLocation(marker.getPosition().latitude, marker.getPosition().longitude, 1);
// Here 1 represent max location result to returned, by documents it recommended 1 to 5
String address = addresses.get(0).getAddressLine(0);
// If any additional address line present than only, check with max available address lines by getMaxAddressLineIndex()
String city = addresses.get(0).getLocality();
String state = addresses.get(0).getAdminArea();
String country = addresses.get(0).getCountryName();
String postalCode = addresses.get(0).getPostalCode();
String knownName = addresses.get(0).getFeatureName();
String countrycode = addresses.get(0).getCountryCode();
mapPosition.setText(""+ address);
catch (IOException e)
e.printStackTrace();
);
【问题讨论】:
所以您是说 Google 的Maps
应用程序可以在没有在线访问的情况下运行,并且可以查找地址、显示地图、查找 2 点之间的路线等?
我没有检查路线,但地图在没有互联网的情况下可以正常工作。
我们说的是地址吧?喜欢10 Downing St, Westminster, London SW1A 2AA, UK
,而不是51.503396°N 0.127640°W
我正在传递 lat 和 long 然后接收地址。 lat 和 lng 是硬编码的。
所以将您的位置从 Thiruvananthapuram 移动到其他遥远的地方,例如 tokyo / paris / 随便什么,然后再试一次
【参考方案1】:
看来缓存内存就是答案。我第一次用互联网检查,所以应用程序存储它缓存,这就是为什么我仍然在离线设备中加载地图并获取相同 lat 和 lng 的地址。
问题中提到的代码可以正常工作。感谢@pskink。
【讨论】:
【参考方案2】:您可以通过网络、gps或location.getLastKnownLocation(LocationManager.NETWORK_PROVIDER)获取经纬度(无需网络)。
看到这个https://***.com/a/22085632/3864698。也许它可以帮助你。
然后从纬度和经度,您可以使用地理编码器类获取完整地址:
Geocoder geocoder;
List<Address> addresses;
geocoder = new Geocoder(this, Locale.getDefault());
addresses = geocoder.getFromLocation(latitude, longitude, 1); // Here 1 represent max location result to returned, by documents it recommended 1 to 5
String address = addresses.get(0).getAddressLine(0); // If any additional address line present than only, check with max available address lines by getMaxAddressLineIndex()
String city = addresses.get(0).getLocality();
String state = addresses.get(0).getAdminArea();
String country = addresses.get(0).getCountryName();
String postalCode = addresses.get(0).getPostalCode();
String knownName = addresses.get(0).getFeatureName();
【讨论】:
我的代码工作正常,我可以得到地址。它背后的想法是什么。我从未在我的代码中使用过 getLastKnownLocation。 Wifi、gps、互联网已关闭且未插入 SIM 卡。 他们可以使用离线工作的地理编码类获取语言 这意味着地理编码器可以在没有这些 gps、wifi 和互联网帮助的情况下工作? 是的,但只需要纬度和经度,我们也可以使用网络,wifi 离线。以上是关于即使安卓设备离线,谷歌地图如何获取地址的主要内容,如果未能解决你的问题,请参考以下文章