如何获取ArcGIS Online中地图的所有信息
how to get all the information of maps in ArcGIS online
我正在使用 ArcGIS REST API 并且想要检索有关 ArcGIS 在线图库中的地图的信息。
例如,我想要此页面的所有信息:http://doc.arcgis.com/en/living-atlas/item/?itemId=aa9c87d6f17b452296252bd75005f6a4
这是一张地图
我知道每张地图都有一个 itemID,但他们在这个页面中有大量地图:http://doc.arcgis.com/en/living-atlas/#s=0&subCat=0&type=All&area=All
,我如何从中获取所有地图 ID?是否有 REST 服务可以做到这一点?我没有在他们的 REST API 参考资料中找到。
那个page that you're referencing is using the ArcGIS REST API. If you look at the network panel of your browser console, you'll see first it's searching for all the groups that have the tag of "gallery" and the owner is esri OR Esri_cy_US
using the groups search endpoint:
然后它使用这些组并使用 search endpoint:
找到这些组中的所有项目
祝你使用 REST 好运 API!
我正在使用 ArcGIS REST API 并且想要检索有关 ArcGIS 在线图库中的地图的信息。
例如,我想要此页面的所有信息:http://doc.arcgis.com/en/living-atlas/item/?itemId=aa9c87d6f17b452296252bd75005f6a4
这是一张地图
我知道每张地图都有一个 itemID,但他们在这个页面中有大量地图:http://doc.arcgis.com/en/living-atlas/#s=0&subCat=0&type=All&area=All
,我如何从中获取所有地图 ID?是否有 REST 服务可以做到这一点?我没有在他们的 REST API 参考资料中找到。
那个page that you're referencing is using the ArcGIS REST API. If you look at the network panel of your browser console, you'll see first it's searching for all the groups that have the tag of "gallery" and the owner is esri OR Esri_cy_US
using the groups search endpoint:
然后它使用这些组并使用 search endpoint:
找到这些组中的所有项目祝你使用 REST 好运 API!