POST
|
Hey Raúl Jiménez Ortega! I have no idea how internal changes in 4.9 could be affecting a custom stream service that delivers the same old Esri JSON features, but it definitely looks like you're on to something. hopefully the folks from the JSAPI team can help out. in the meantime, is your prototype something you can push up on GitHub with instructions to get it up and running? cc/ Bjorn Svensson
... View more
03-07-2019
03:09 PM
|
0
|
1
|
219
|
POST
|
in esri leaflet we're not doing anything special. we just pass through whatever JSON you supply. if this thread isn't helpful, I'd recommend figuring out the appropriate syntax for your raster function directly at the REST endpoint and asking for help from image service experts if necessary. https://gis.arkansas.gov/arcgis/rest/services/ImageServices/DEM_1M_2018/ImageServer/exportImage
... View more
03-06-2019
10:59 AM
|
0
|
0
|
53
|
POST
|
i don't know anything about rotating labels, but i was definitely able to display and customize the X and Y axis labels in the ember-cli-cedar playground. { "type" : "bar" , "datasets" : [ { "url" : "https://services.arcgis.com/uDTUpUPbk8X8mXwl/arcgis/rest/services/Public_Schools_in_Onondaga_County/FeatureServer/0" , "name" : "Number_of_SUM" , "query" : { "orderByFields" : "Number_of_SUM DESC" , "groupByFieldsForStatistics" : "Type" , "outStatistics" : [ { "statisticType" : "sum" , "onStatisticField" : "Number_of" , "outStatisticFieldName" : "Number_of_SUM" } ] } } ] , "series" : [ { "category" : { "field" : "Type" , "label" : "custom" } , "value" : { "field" : "Number_of_SUM" , "label" : "also custom" } , "source" : "Number_of_SUM" } ] }
... View more
02-21-2019
09:53 AM
|
1
|
4
|
132
|
POST
|
yup. you can configure GP services to output all sorts of different results.
... View more
12-27-2018
09:58 AM
|
0
|
1
|
18
|
POST
|
there's no need to guess. inspect the url and the request parameters for a successful request when visiting the raw service endpoint and compare and contrast that with what's being sent from your esri-leaflet app.
... View more
12-22-2018
09:54 AM
|
0
|
3
|
111
|
POST
|
i meant open the developer tools in your browser and inspect the individual requests and responses.
... View more
12-21-2018
11:32 AM
|
0
|
5
|
111
|
POST
|
try snooping the web traffic to see the actual request and response.
... View more
12-03-2018
04:40 PM
|
0
|
7
|
111
|
POST
|
you need to call Geoprocessing() from within your `addMarker()` function. bonus points if you start passing through the latitude and longitude as arguments instead of relying on a global variable. ex: Geoprocessing ( e . latlng . lng , e . latlng . lat ) // ... function Geoprocessing ( long , lat ) { } )
... View more
12-03-2018
11:05 AM
|
0
|
1
|
111
|
POST
|
> However I cannot get the two to talk to each other. are you saying you can't get your webpage to talk to ArcMap? or are you saying you can't figure out how to invoke the GP service using the coordinates that the user drew in the esri-leaflet app?
... View more
12-03-2018
09:19 AM
|
0
|
3
|
111
|
POST
|
this is switching gears completely, but you can find a JSAPI example that uses chart.js using an array of 'raw' values instead of features here: Query statistics client-side | ArcGIS API for JavaScript 4.9 > Is there a way I can directly send the extracted data back to the webpage? if your GP service generates a list of values instead of features you can access them in a callback using esri-leaflet-gp and then wire up a chart of your own. there are lots of charting libs out there. the crux for you will be to adapt the response to match the data model the one you choose expects.
... View more
11-17-2018
02:23 PM
|
0
|
1
|
47
|
Online Status |
Offline
|
Date Last Visited |
11-11-2020
02:22 AM
|