City of Vernonia GIS

Results 11 comments of City of Vernonia GIS

There is a couple reasons why `objectIds` is required. First, it's the most commonly used parameter for deleting features. Second, there's no conditional logic in typescript interfaces. Not only can...

Additionally having the browser demos live at https://esri.github.io/arcgis-rest-js/demos/EACH_EXAMPLE/ would be nice too. Or at least links back to the demos in the repo that pertain to each package. Like the...

Hey @gavinr. `IFeature[geometry]` does have a type issue. It needs to be a list of geometry types and not the shared `IGeometry`. I won't PR b/c of the all the...

Not at this time. But... ```javascript setDefaultRequestOptions({ portal: 'https:///portal/sharing/rest/' }); searchItems('ownerfolder: ea19...91ac').then(); // request made to arcgis.com ``` ```javascript searchItems({ q: 'ownerfolder: ea19...91ac', portal: 'https:///portal/sharing/rest/' }).then(); // request made to...

I messed around with this a bit. Setting a default `portal` is being overridden by something in the portal package when mixing all the bits and pieces into a request....

Thanks @patrickarlt for looking into it. I noticed `setDefaultRequestOptions` sets defaults instead of mixing in. https://github.com/Esri/arcgis-rest-js/blob/ed396717353c11a78f20951a319d34111ee81f9d/packages/arcgis-rest-request/src/request.ts#L46 I tried mixing in `setDefaultRequestOptions` with defaults thinking there might be a scenario where...

IMHO the developer should be responsible for handling responses from the CRUD methods and the response/error behavior thereof should not be altered for a few reasons. * The request returns...

Typescript doesn't support auto casting. Import `SimpleFillSymbol` and `symbol: new SimpleFillSymbol(...)`.

I switched to TS at 4.13 and this is the first issue I ran into migrating from JS. Hard to say why it "worked" before but you should have been...

I just ran into the same error. A few months ago I updated a couple apps to chart js 4.x using data labels 2.2.0. Everything was working fine in dev...