作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我刚刚创建了一个带有一些标记的 map Activity ,同时单击标记标题获取标记位置的地址用于教育目的,一切正常。
即使设备未连接到互联网,它也会获取地址。我没有在 list 中授予互联网许可。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();
}
}
});
}
}
最佳答案
答案似乎是缓存内存。我第一次检查互联网,所以应用程序存储它缓存这就是为什么我仍然在设备离线时加载 map 并获取相同纬度和经度的地址。
问题中提到的代码工作正常。感谢@pskink。
关于android - 谷歌地图如何在安卓设备离线的情况下获取地址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46599533/
我是一名优秀的程序员,十分优秀!