2

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:

picture GCWA

PolyGeo
65.5k29 gold badges115 silver badges350 bronze badges
asked Apr 7, 2022 at 9:37
1
  • search 'query?' on the network tab on your inspect element. check this out, it works Commented Apr 7, 2022 at 10:30

1 Answer 1

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:

Web Mapping Application JSON

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.

Web Map JSON

answered Apr 7, 2022 at 12:20
3
  • 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? Commented Apr 11, 2022 at 11:32
  • Sorry, I don't know about qgis. You might ask a separate question about that . Commented 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. Commented Apr 13, 2022 at 8:06

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.