HTML Popup (Map Service/Layer)
- URL:https://<feature-url>/htmlPopup
- Required Capability:Query
- Version Introduced:10.0
Description
The htmlPopup resource provides details about the HTML pop-up authored by the user using ArcMap and ArcGIS Pro. This resource is available when a layer resource's htmlPopupType is not esriServerHTMLPopupTypeNone.
New in 10.1
Support for the gdbVersion parameter was added. Use this parameter to specify the geodatabase version to query.
Request parameters
Parameter |
Details |
---|---|
gdbVersion |
Geodatabase version to query. This parameter applies only if the hasVersionedData property of the service and isDataVersioned property of the layers queried are true. If this is not specified, the query will apply to the published map's version.
|
f |
The response format. The default response format is html. Values: html | json | pjson |
Example usage
Below is a sample request URL used to access the htmlPopup resource:
https://machine.domain.com/webadaptor/rest/services/Petroleum/StantonCountyKSLeases/MapServer/0/1/htmlPopup?f=pjson
JSON Response syntax
{
"htmlPopupType": "<esriServerHTMLPopupTypeNone | esriServerHTMLPopupTypeAsURL | esriServerHTMLPopupTypeAsHTMLText>",
"content": "<htmlContent>"
}
JSON Response example
{
"htmlPopupType": "esriServerHTMLPopupTypeAsHTMLText",
"content": "A Sample HTML pop up."
}