I'm developing maps using ArcGIS SDK and Xamarin.Android.
Hi,
It all depends what services you are using in your application. Could you describe a bit more which services you are using?
Hello Antti Kajanus,
I’m using the below code to display the current location
MapView _myMapView = new MapView();
Map _myMap = new Map(Basemap.CreateImagerywithLabels());
_myMapView.Map = _myMap;
_ myMapView.LocationDisplay.AutoPanMode = LocationDisplayAutoPanMode.Recenter;
if (!_myMapView.LocationDisplay.IsEnabled)
_ myMapView.LocationDisplay.IsEnabled = true;
If I’m using my personnel network, I can able to view but I’m unable to view with my company network.
When I try to browse arcgis related sites I can able view using my company network.
Please give me the solution.
Regards,
Saritha
You can find the urls from Imagery with labels basemap item.
Seems to be https://services.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer and https://services.arcgisonline.com/ArcGIS/rest/services/Reference/World_Boundaries_and_Places/MapServer
Could you look at the traffic from your application? What sites is it trying to reach, and what errors are you getting? You could use a tool like Fiddler to look at network traffic.
Loop through Source Uri property on the the layers created with the CreateImageryWithLabels() call, and you will see what gets called.
Signed in members can post, follow updates, and more. New here? Register a free account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.