What happened to AGSWebTiledLayer in iOS and Android version 100 of the ArcGIS SDK?

1471
5
Jump to solution
01-23-2017 04:31 PM
jefflutzenberger1
New Contributor II

Anyone have sample code that consumes a /z/x/y.png layer?

0 Kudos
1 Solution

Accepted Solutions
YueWu1
by Esri Regular Contributor
Esri Regular Contributor

Hi Jeff,

Current 100.0.0 Runtime hasn't implement the capability of using WebTiledLayer including (OpenStreetMap,WMS, WMTS, etc), for more detail information please check this online documentation:

Runtime Choosing the right version | ArcGIS for Developers 

View solution in original post

5 Replies
AdrianWelsh
MVP Honored Contributor

Jeff,

Which programming environment / language are you working in? I have seen similar examples to this in Leaflet.js:

Leaflet - a JavaScript library for interactive maps 

Like:

var map = L.map('map').setView([51.505, -0.09], 13);

L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', {
    attribution: '&copy; <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
}).addTo(map);

L.marker([51.5, -0.09]).addTo(map)
    .bindPopup('A pretty CSS3 popup.<br> Easily customizable.')
    .openPopup();
0 Kudos
FC_Basson
MVP Regular Contributor

If you are using the 3.19 API, have a look at WebTiledLayer | API Reference | ArcGIS API for JavaScript 3.19 

with a nice example here: ArcGIS API for JavaScript Sandbox 

jefflutzenberger1
New Contributor II

Thanks. My bad for not being more specific. ArcGIS iOS and Android SDKs - the previous 10.x versions had that method. I don't see it in the new 100 version but I'm guessing there's a new way to do it? 

0 Kudos
AdrianWelsh
MVP Honored Contributor

Jeff,

For better visibility, it might be best to move this thread to the https://community.esri.com/community/developers/native-app-developers/arcgis-runtime-sdk-for-ios?sr=...‌ place. Currently it's in the https://community.esri.com/community/help-and-feedback?sr=search&searchId=42de48eb-649d-4797-973e-ac...‌ place which is for help with the GeoNet.

YueWu1
by Esri Regular Contributor
Esri Regular Contributor

Hi Jeff,

Current 100.0.0 Runtime hasn't implement the capability of using WebTiledLayer including (OpenStreetMap,WMS, WMTS, etc), for more detail information please check this online documentation:

Runtime Choosing the right version | ArcGIS for Developers