|
BLOG
|
When i try to create a WAB DE 2.10 app with the dashboard theme the map control is not displaying, no web map. If I switch to another theme it works fine. Is there a bug here? and Is there a work around to this bug?
... View more
11-15-2018
01:50 PM
|
0
|
0
|
574
|
|
POST
|
Is there a way to have the search widget search Lon and Lat with an on premises solution that you know of? What does the locator have to have in it to support lat lon?
... View more
02-14-2018
08:28 PM
|
0
|
0
|
1361
|
|
DOC
|
Any idea why GETUTCDATE does not work in the place of CURRENT_TIMESTAMP for a service based on a Geodatabase stored in SQL Server? Is CURRENT_TIMESTAMP the only DateTime Function supported?
... View more
01-22-2018
01:51 PM
|
0
|
0
|
25371
|
|
IDEA
|
Date and Time are usually stored in a single field in modern databases. It should be an out of the box feature in the Infographic Widget (and really ALL applicable widgets) for me to easily be able to group on different parts of the DateTime to display frequency per day or month or year or hour of the day of day of the week, etc. based on a date field without having to create a text type date column to use as a class for displaying counts, and then a separate Month of the year column. See attached charts
... View more
08-10-2017
02:17 PM
|
10
|
0
|
1698
|
|
IDEA
|
Right now I can create an info graphic based on a map layer as a data source and if I apply a filter to that map layer the infographic will adjust to the filtered data. But I want to be able to create Infographics for the same map layer but that show different counts/statistics for features in that map layer and for subcategories of those features at the same time. In order to do this I need to be able to apply a filter to one of the InfoGraphics and not the other. For instance say I had a layer showing the location on Pets. And I wanted one info graphic to show the total number of pets, and another to show the total number of dogs based on the species field in the pets layer and a third to show the total number of Pit Bulls based on the breed column at the same time. There is no functionality to apply a Where Clause type filter to the infographic so I can't have one that just shows the number of pitbulls if I use my pets layer as the data source. I would also like these filters to allow for filtering based on multiple fields not just a single field. So if I wanted that last Infographic to just be male pit bulls then I could set the filter to Breed = Pit Bull AND Sex = Male based on two fields. I could create an Extra Data Source for Pets, and another for Dogs and another for just Pit Bulls since the Extra Data Source dialog allows for filtering. But the Filter Widgets do not allow for filtering of Extra Data Sources, so if I apply a filter to my map, say county, the infographics would not update for that filter since they are based on Extra Data Sources. I want to be able to show several different counts for features and subcategories of those same features at the same time in different Infographics.
... View more
08-10-2017
01:50 PM
|
12
|
4
|
2906
|
|
IDEA
|
I would like to be able to uncheck the Filter By Extent box that is greyed out in the Infographic Widget configuration. I want my users to be able to filter based on an attribute and have the info graphic update for that filtered value, even if some of the points happen to be out of the current extent. This box unchecks itself if you load an extra data source into the InfoGraphic instead of a map layer. However, this is not a work around for me because the filter widget does not support filtering of extra data sources.
... View more
08-10-2017
01:17 PM
|
8
|
3
|
3020
|
|
POST
|
I installed 10.1 SP1 and still get this error. Has anyone else found suggestions for how to deal with this error?
... View more
01-11-2013
12:06 PM
|
0
|
0
|
3283
|
|
POST
|
I just wanted to second Tony's suggestion that the defaultLabel property should be supported by the legend in future versions. Maybe in time for 2.2 final??? Please! In the mean time, thanks for the work around.
... View more
06-16-2011
08:16 AM
|
0
|
0
|
749
|
|
POST
|
The answer came in a reply to a question I asked in another thread, which I didn't expect to solve this problem, but it did. I was not setting the spatial reference for the graphic I was trying to buffer when I was creating that graphic. As soon as I put a "graphic.Geometry.SpatialReference = new SpatialReference(4326);" into the code that created the input graphic for the buffer operation, everything worked great.
... View more
03-11-2011
02:28 PM
|
0
|
0
|
439
|
|
POST
|
Sweet....that seems to have solved the issues I was having. I was not setting the spatial reference upon creating the graphics that I wanted to use as the input into the Geometry Service. Thanks
... View more
03-11-2011
02:24 PM
|
0
|
0
|
919
|
|
POST
|
I am trying to use BufferAsync to execute a buffer around a point graphic in this case. When monitoring in Fiddler there doesn't seem to be any action generated at all. I don't think a request is being sent to the server at all. It behaves the same way no matter which GeometryService I use, ESRI's or my own. I am using the code almost exactly as it is in the Samples. Anyone see any obvious issues here. I have separated the code for the geocode and that of the buffer into separate functions just to keep it clear for me. So the buffer is executing after a Click Event. private void BufferAddressButton_Click(object sender, RoutedEventArgs e)
{
_geometryService = new GeometryService("http://myServer/ArcGIS/rest/services/Geometry/GeometryServer");
_geometryService.BufferCompleted += GeometryService_BufferCompleted;
_geometryService.Failed += GeometryService_Failed;
_geometryService.CancelAsync();
BufferParameters buffParameters = new BufferParameters();
buffParameters.Unit = LinearUnit.StatuteMile;
buffParameters.BufferSpatialReference = new SpatialReference(54034);
buffParameters.OutSpatialReference = Map1.SpatialReference;
buffParameters.UnionResults = true;
GraphicsLayer graphicsLayerAddress = Map1.Layers["AddressSearched"] as GraphicsLayer;
Graphic graphic = graphicsLayerAddress.Graphics[0];
//buffParameters.
buffParameters.Distances.Add(2);
buffParameters.Features.Add(graphicsLayerAddress.Graphics[0]);
_geometryService.BufferAsync(buffParameters);
}
... View more
03-11-2011
02:13 PM
|
0
|
2
|
799
|
|
POST
|
Hi, have you verified that the geometry you are trying to project has a valid spatial reference set? How would you verify that your input geometry has a valid spatial reference set??
... View more
03-11-2011
01:49 PM
|
0
|
0
|
919
|
|
POST
|
I am also trying to figure out how to return multiple output parameters from the same Async GP Task Job. Does anyone have any C# code examples for how you do that.
... View more
12-10-2010
11:39 AM
|
0
|
0
|
1311
|
|
POST
|
In these examples the distinct values are derived from the results of a query task returning the entire dataset to the client. The database I need to return the values for has 40,000 records in it. Does anyone have experience/ideas on doing this on the server side so just the unique values are returned to the client.
... View more
12-02-2010
05:47 AM
|
0
|
0
|
868
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 11-02-2022 07:39 AM | |
| 123 | 02-27-2019 12:08 PM | |
| 3 | 05-02-2019 09:49 AM | |
| 35 | 05-28-2010 07:13 PM | |
| 34 | 05-28-2010 07:13 PM |
| Online Status |
Offline
|
| Date Last Visited |
08-14-2025
11:41 AM
|