Point Overlay
http://gisapps.co.union.nc.us/ws/rest/v2/geo_pointoverlay.ashx
Description
Takes a user defined point and overlays it with a specified geotable.
Service Arguments
| PARAMETER | DESCRIPTION |
|---|---|
| x | X coordinate. |
| y | Y coordinate. |
| srid | SRID of the XY coordinate. |
| geotable | The geotable that has the features you want selected by the specified point. |
| fields | Comma delimited list of fields to be returned. |
| parameters | SQL where parameters. |
| format | Format for the output (xml, json, or geojson) |
Service Output
Service output is entirely dependant upon the fields parameter.
Sample Output
Sample XML Output
<rows count="1"> <row> <column name="sub_name">Brandon Oaks</column> <column name="sub_code">BRAN</column> </row> </rows>
Sample JSON Output
{rows:[
{sub_name:"Brandon Oaks",sub_code:"BRAN"}
]}