mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-27 04:43:54 +01:00
NearbyParentFragment : added referer (#5417)
* NearbyParentFragment : added referer In file NearbyParentFragment.java, I added header property, i.e., the referer - http://maps.wikimedia.org/ and set tile source to wikimedia. * Reworded comments --------- Co-authored-by: Nicolas Raoul <nicolas.raoul@gmail.com>
This commit is contained in:
parent
050a06b258
commit
6a70c90643
1 changed files with 12 additions and 0 deletions
|
|
@ -125,6 +125,7 @@ import org.osmdroid.events.MapEventsReceiver;
|
||||||
import org.osmdroid.events.MapListener;
|
import org.osmdroid.events.MapListener;
|
||||||
import org.osmdroid.events.ScrollEvent;
|
import org.osmdroid.events.ScrollEvent;
|
||||||
import org.osmdroid.events.ZoomEvent;
|
import org.osmdroid.events.ZoomEvent;
|
||||||
|
import org.osmdroid.tileprovider.tilesource.TileSourceFactory;
|
||||||
import org.osmdroid.util.GeoPoint;
|
import org.osmdroid.util.GeoPoint;
|
||||||
import org.osmdroid.util.constants.GeoConstants;
|
import org.osmdroid.util.constants.GeoConstants;
|
||||||
import org.osmdroid.views.CustomZoomButtonsController;
|
import org.osmdroid.views.CustomZoomButtonsController;
|
||||||
|
|
@ -398,7 +399,18 @@ public class NearbyParentFragment extends CommonsDaggerSupportFragment
|
||||||
presenter.setActionListeners(applicationKvStore);
|
presenter.setActionListeners(applicationKvStore);
|
||||||
org.osmdroid.config.Configuration.getInstance().load(this.getContext(),
|
org.osmdroid.config.Configuration.getInstance().load(this.getContext(),
|
||||||
PreferenceManager.getDefaultSharedPreferences(this.getContext()));
|
PreferenceManager.getDefaultSharedPreferences(this.getContext()));
|
||||||
|
|
||||||
|
// Use the Wikimedia tile server, rather than OpenStreetMap (Mapnik) which has various
|
||||||
|
// restrictions that we do not satisfy.
|
||||||
|
mapView.setTileSource(TileSourceFactory.WIKIMEDIA);
|
||||||
mapView.setTilesScaledToDpi(true);
|
mapView.setTilesScaledToDpi(true);
|
||||||
|
|
||||||
|
// Add referer HTTP header because the Wikimedia tile server requires it.
|
||||||
|
// This was suggested by Dmitry Brant within an email thread between us and WMF.
|
||||||
|
org.osmdroid.config.Configuration.getInstance().getAdditionalHttpRequestProperties().put(
|
||||||
|
"Referer", "http://maps.wikimedia.org/"
|
||||||
|
);
|
||||||
|
|
||||||
if (applicationKvStore.getString("LastLocation")
|
if (applicationKvStore.getString("LastLocation")
|
||||||
!= null) { // Checking for last searched location
|
!= null) { // Checking for last searched location
|
||||||
String[] locationLatLng = applicationKvStore.getString("LastLocation").split(",");
|
String[] locationLatLng = applicationKvStore.getString("LastLocation").split(",");
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue