ESRI ArcGIS Runtime for .NET view non ESRI Vector TilesArcGIS Runtime .NET resourcesArcGIS RunTime for .net...
Plot of a tornado-shaped surface
What are some good ways to treat frozen vegetables such that they behave like fresh vegetables when stir frying them?
Angel of Condemnation - Exile creature with second ability
Is there a RAID 0 Equivalent for RAM?
Multiplicative persistence
Quoting Keynes in a lecture
On a tidally locked planet, would time be quantized?
Why does AES have exactly 10 rounds for a 128-bit key, 12 for 192 bits and 14 for a 256-bit key size?
How do I delete all blank lines in a buffer?
Is there a way to get `mathscr' with lower case letters in pdfLaTeX?
When were female captains banned from Starfleet?
Why is the "ls" command showing permissions of files in a FAT32 partition?
How do you make your own symbol when Detexify fails?
Invalid date error by date command
How do apertures which seem too large to physically fit work?
Biological Blimps: Propulsion
Does an advisor owe his/her student anything? Will an advisor keep a PhD student only out of pity?
What is Cash Advance APR?
Why is it that I can sometimes guess the next note?
Can I say "fingers" when referring to toes?
Does malloc reserve more space while allocating memory?
Store Credit Card Information in Password Manager?
What is going on with 'gets(stdin)' on the site coderbyte?
Calculate sum of polynomial roots
ESRI ArcGIS Runtime for .NET view non ESRI Vector Tiles
ArcGIS Runtime .NET resourcesArcGIS RunTime for .net Local server patternWhat is road ahead for ArcGIS Runtime .NET/WPF SDKs?Drawing decorated line in ArcGIS Runtime SDK for .NET?Hosted tiled mapping (Portal) VS. Cached map service (Server)Creating Vector Map Tiles in ArcGIS Pro with attributionHow To Create Map View without XAML in ArcGIS Runtime for .NET?Self hosting vector tilesAdding ArcGIS Online vector tile service in Leaflet map?Is there a Python script or geoprocessing tool that takes a folder of PBF Vector Tiles (TMS or XYZ Tiling Scheme) to VTPK (ESRI Vector Tile Package)
I am trying to view some vector tiles hosted outside of ArcGIS Online/ArcGIS Enterprise on my own tile server (Flat non indexed tiles).
I have been unable to add the Tile Server to the .NET Runtime application.
I think it's because of ESRI's implementation of the Stylesheet baked into the URL.
ESRI wants {level}/{Col}/{row}.pbf instead of standard placeholders /{z}/{x}/{y}.pbf (at least that's how you add tile server with the different placeholders)
https://tiles.arcgis.com/tiles/a6SBLWoOui928qXS/arcgis/rest/services/UAS/VectorTileServer
the stylesheet is found by default with ESRI https://tiles.arcgis.com/tiles/a6SBLWoOui928qXS/arcgis/rest/services/UAS/VectorTileServer/resources/styles
the URL for ESRI's basemap
https://basemaps.arcgis.com/arcgis/rest/services/World_Basemap_v2/VectorTileServer
vector-tiles arcgis-runtime-sdk-.net
bumped to the homepage by Community♦ 1 min ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I am trying to view some vector tiles hosted outside of ArcGIS Online/ArcGIS Enterprise on my own tile server (Flat non indexed tiles).
I have been unable to add the Tile Server to the .NET Runtime application.
I think it's because of ESRI's implementation of the Stylesheet baked into the URL.
ESRI wants {level}/{Col}/{row}.pbf instead of standard placeholders /{z}/{x}/{y}.pbf (at least that's how you add tile server with the different placeholders)
https://tiles.arcgis.com/tiles/a6SBLWoOui928qXS/arcgis/rest/services/UAS/VectorTileServer
the stylesheet is found by default with ESRI https://tiles.arcgis.com/tiles/a6SBLWoOui928qXS/arcgis/rest/services/UAS/VectorTileServer/resources/styles
the URL for ESRI's basemap
https://basemaps.arcgis.com/arcgis/rest/services/World_Basemap_v2/VectorTileServer
vector-tiles arcgis-runtime-sdk-.net
bumped to the homepage by Community♦ 1 min ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I am trying to view some vector tiles hosted outside of ArcGIS Online/ArcGIS Enterprise on my own tile server (Flat non indexed tiles).
I have been unable to add the Tile Server to the .NET Runtime application.
I think it's because of ESRI's implementation of the Stylesheet baked into the URL.
ESRI wants {level}/{Col}/{row}.pbf instead of standard placeholders /{z}/{x}/{y}.pbf (at least that's how you add tile server with the different placeholders)
https://tiles.arcgis.com/tiles/a6SBLWoOui928qXS/arcgis/rest/services/UAS/VectorTileServer
the stylesheet is found by default with ESRI https://tiles.arcgis.com/tiles/a6SBLWoOui928qXS/arcgis/rest/services/UAS/VectorTileServer/resources/styles
the URL for ESRI's basemap
https://basemaps.arcgis.com/arcgis/rest/services/World_Basemap_v2/VectorTileServer
vector-tiles arcgis-runtime-sdk-.net
I am trying to view some vector tiles hosted outside of ArcGIS Online/ArcGIS Enterprise on my own tile server (Flat non indexed tiles).
I have been unable to add the Tile Server to the .NET Runtime application.
I think it's because of ESRI's implementation of the Stylesheet baked into the URL.
ESRI wants {level}/{Col}/{row}.pbf instead of standard placeholders /{z}/{x}/{y}.pbf (at least that's how you add tile server with the different placeholders)
https://tiles.arcgis.com/tiles/a6SBLWoOui928qXS/arcgis/rest/services/UAS/VectorTileServer
the stylesheet is found by default with ESRI https://tiles.arcgis.com/tiles/a6SBLWoOui928qXS/arcgis/rest/services/UAS/VectorTileServer/resources/styles
the URL for ESRI's basemap
https://basemaps.arcgis.com/arcgis/rest/services/World_Basemap_v2/VectorTileServer
vector-tiles arcgis-runtime-sdk-.net
vector-tiles arcgis-runtime-sdk-.net
asked Feb 20 at 16:28
Jordan BessJordan Bess
1064
1064
bumped to the homepage by Community♦ 1 min ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 1 min ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
The VectorTileLayer is expecting the service to provide a particular set of metadata and files at particular locations matching how ArcGIS Server does it. So your tile cache would need to follow that pattern as well.
You might want to try and use Fiddler and see which requests are failing or which one is the last request.
Also check the LoadError on the layer itself.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "79"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f312940%2fesri-arcgis-runtime-for-net-view-non-esri-vector-tiles%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The VectorTileLayer is expecting the service to provide a particular set of metadata and files at particular locations matching how ArcGIS Server does it. So your tile cache would need to follow that pattern as well.
You might want to try and use Fiddler and see which requests are failing or which one is the last request.
Also check the LoadError on the layer itself.
add a comment |
The VectorTileLayer is expecting the service to provide a particular set of metadata and files at particular locations matching how ArcGIS Server does it. So your tile cache would need to follow that pattern as well.
You might want to try and use Fiddler and see which requests are failing or which one is the last request.
Also check the LoadError on the layer itself.
add a comment |
The VectorTileLayer is expecting the service to provide a particular set of metadata and files at particular locations matching how ArcGIS Server does it. So your tile cache would need to follow that pattern as well.
You might want to try and use Fiddler and see which requests are failing or which one is the last request.
Also check the LoadError on the layer itself.
The VectorTileLayer is expecting the service to provide a particular set of metadata and files at particular locations matching how ArcGIS Server does it. So your tile cache would need to follow that pattern as well.
You might want to try and use Fiddler and see which requests are failing or which one is the last request.
Also check the LoadError on the layer itself.
answered Feb 20 at 22:37
dotMortendotMorten
37925
37925
add a comment |
add a comment |
Thanks for contributing an answer to Geographic Information Systems Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f312940%2fesri-arcgis-runtime-for-net-view-non-esri-vector-tiles%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown