Anywhere.ArcGIS icon indicating copy to clipboard operation
Anywhere.ArcGIS copied to clipboard

:earth_asia: Use ArcGIS Server REST resources without an official SDK.

Results 6 Anywhere.ArcGIS issues
Sort by recently updated
recently updated
newest added

This line of code: https://github.com/davetimmins/Anywhere.ArcGIS/blob/master/src/Anywhere.ArcGIS/Common/IGeometry.cs#L634 causes an exception if I union two extents when both of them have spatial reference of null. Any chance this could be addressed? Thank you...

Hi, I have ran into an interesting problem when querying an ArcGIS server with a complex geometry... ``` Query query = new Query(service.AsEndpoint()) { SpatialRelationship = SpatialRelationshipTypes.Intersects, Geometry = parcel.Geometry,...

Most cases, I will need to have either a Point or a Polygon when querying. In both cases, I end up with a IGeometry. JsonConvert.DeserializeObject does support passing the type...

As per earlier conversation in #49, I've added an optional `AsyncPolicy` argument to `BatchQuery()` to allow the individual query batches to be retried if they timeout.

I create this method, that connects to some Esri MapServer and gets all geometries and creates a GEOJSON: ``` public async Task QueryAllFromMapserviceLayer(string server, string service, string layer) { //http://app.anp.gov.br/arcgis/rest/services/ANP_Public_Confidential/MapServer/0/query...

Hi Dave, Can you please suggest how I might be able to prevent it from swallowing TaskCanceledException, and FormatException? I tried inheriting from PortalGateway but the Post method is not...