I would like to view certain Webmap information in my desktop GIS software, and I'm looking for a way to extract a REST server (or, in future situations, WMS/WFS/WCS URLs) from a webmap website.
I reviewed these two posts:
It's clear that you need to inspect the website/use developer tools to find the feature service URL from the Network Tab... and this is where I run into problems. For example, I'm trying to get the REST URL for this website https://tpwd.maps.arcgis.com/apps/webappviewer/index.html?id=f5e8debeaa994abe888d86a7112649ff. But when I analyze the network tab, I can't find the REST server URL.
How do I find this URL using inspect element?
See picture below:
-
search 'query?' on the network tab on your inspect element. check this out, it workssutan– sutan2022年04月07日 10:30:26 +00:00Commented Apr 7, 2022 at 10:30
1 Answer 1
The first thing to do is get the application's configuration. Do this by searching the Network tab in the browser's Developer Tools.
If you filter on f5e
for instance (which is part of the ID in your URL), you will find a request to the Web Mapping Application: https://tpwd.maps.arcgis.com/sharing/rest/content/items/f5e8debeaa994abe888d86a7112649ff/data?f=json
The response is a JSON file which has a map
attribute that in turn has an ItemID
of ef0d5fe1a5f841ffb432445b1913cb55
:
Now, search the Network tab for that ID. You will find two items, you need this one: https://tpwd.maps.arcgis.com/sharing/rest/content/items/ef0d5fe1a5f841ffb432445b1913cb55/data?f=json
This is also a JSON file, of the Web Map this time, containing all used layers and basemaps.
-
Thank you, that was helpful, however I haven't been able to add the map to my QGIS. I find the area that you're talking about, and I successfully reach a REST server page when I search for the URL from layer 0 "GCWA_2016HabClass_3319". However, when the layer does not display after it's added to my map. Is this ia security/access view, or is there another step I have to complete in order to see map?greyhug– greyhug2022年04月11日 11:32:22 +00:00Commented Apr 11, 2022 at 11:32
-
Sorry, I don't know about qgis. You might ask a separate question about that .Berend– Berend2022年04月11日 12:03:35 +00:00Commented Apr 11, 2022 at 12:03
-
Okay no worries, and thank you for your help. I realize that that was not specified in the original question, so a new post would be best.greyhug– greyhug2022年04月13日 08:06:04 +00:00Commented Apr 13, 2022 at 8:06
Explore related questions
See similar questions with these tags.