Setting Carmen Feature address to my Address Object (Mapbox Android)
问题 Basically I need to set this string address returned from CarmenFeature to my Address Object. The below code basically returns the string address using the placeName method. private void reverseGeocode(final Point point) { try { MapboxGeocoding client = MapboxGeocoding.builder() .accessToken(getString(R.string.access_token)) .query(Point.fromLngLat(point.longitude(), point.latitude())) .geocodingTypes(GeocodingCriteria.TYPE_ADDRESS) .build(); client.enqueueCall(new Callback<GeocodingResponse>