|
POST
|
Mark, I had a similar problem, not quite as extreme as yours, when I was trying to change from using the online api to an api hosted on my own server. It turned out to be a typo in the URLs for the attached script files. Have you checked that all your linked scripts are correct? Regards Anthony
... View more
03-01-2013
06:26 AM
|
0
|
0
|
1635
|
|
POST
|
Robert, I see that the data grid you use for your esearch widget automatically changes the column widths to fit the data within them. How hard would it be to make the same changes to the out of the box attribute table widget so that you do not end up with tiny columns when you have a lot of attributes? Regards Anthony
... View more
03-01-2013
06:11 AM
|
0
|
0
|
724
|
|
POST
|
George, You can add a sixth colour to the colors tag in the main config which will be used as the applications background colour,see: http://resources.arcgis.com/en/help/flex-viewer/concepts/index.html#/Setting_styles_for_the_Viewer/01m30000000s000000/ E.g. <colors>0xFFFFFF,0x333333,0x101010,0x000000,0xFFD700,0x000000</colors> Would give a black background Regards Anthony
... View more
03-01-2013
05:58 AM
|
0
|
0
|
1145
|
|
POST
|
Susan, Do you have the ability to amend the source code? If so, you'll see it's fairly straight forward to add in the conversion for nautical miles. You should be able to see where you would need to add the code: https://github.com/Esri/arcgis-viewer-flex/blob/develop/src/widgets/Draw/DrawWidget.mxml In the function basewidget_widgetConfigLoaded there is a case statement with the units of measure listed and there is an array list near the bottom with the same again Regards Anthony
... View more
02-28-2013
09:01 AM
|
0
|
0
|
660
|
|
POST
|
Yes I see what you mean, i think the changes that Kenny will need to make should be achievable in the attribute table widget. Regards Anthony
... View more
02-27-2013
05:31 AM
|
0
|
0
|
1658
|
|
POST
|
I am not aware of any restriction from you customizing the provided source code, I believe that's why it�??s called the 'sample viewer', to be used as a starting point. Regards Anthony
... View more
02-27-2013
05:22 AM
|
0
|
0
|
1658
|
|
POST
|
http://www.esri.com/apps/products/download/index.cfm?fuseaction=download.all#ArcGIS_API_for_Flex Regards Anthony
... View more
02-27-2013
03:47 AM
|
0
|
0
|
1040
|
|
POST
|
Kenny, The source code for the viewer can be found on GitHub here: https://github.com/Esri/arcgis-viewer-flex http://www.esri.com/apps/products/download/index.cfm?fuseaction=download.all#ArcGIS_API_for_Flex Regards Anthony
... View more
02-26-2013
08:20 PM
|
0
|
0
|
1658
|
|
POST
|
Darryl, It would be probably be better to start a new thread under the appropiate api you are using as the answer will differ depending on which language you are using (flex,silverlight,javascript). Then you can mark this thread as answered 😮 Regards Anthony
... View more
02-25-2013
03:50 AM
|
0
|
0
|
1968
|
|
POST
|
Darryl, Take a look at this blog: http://geoxchange.esriuk.com/journal/2012/10/12/why-are-my-ogc-web-services-displaced-by-about-120-metres.html Regards Anthony
... View more
02-25-2013
12:00 AM
|
0
|
0
|
1968
|
|
POST
|
Ryan, Have you got the libraries from the original widget found here: http://www.arcgis.com/home/item.html?id=56d4d2ed5d474eb4b8e29973d2376652 Regards Anthony
... View more
02-22-2013
06:38 AM
|
0
|
0
|
1190
|
|
POST
|
Ethan, Where you have multiple values you need an operator attribute (AND or OR), eg:
<value prompt="Section" isvaluerequired="false">Section like '%[value]%'</value>
<value prompt="Township" isvaluerequired="false" operator="AND">Township like '%[value]%'</value>
<value prompt="Range" isvaluerequired="false" operator="AND">>Range like '%[value]%'</value>
also if any of your fields are numeric you need to use fieldname = [value] not fieldname like '%[value]%' Regards Anthony
... View more
02-22-2013
05:31 AM
|
0
|
0
|
565
|
|
POST
|
Rhett, You can take the point that is created from the latitude and longitude and use the project function in the geometry service to reproject the point to the coordinate system you require, then add this to the graphic layer: http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Geometry/GeometryServer/project?inSR=4236&outSR=32149&geometries=%7B%0D%0A%22geometryType%22+%3A+%22esriGeometryPoint%22%2C%0D%0A%22geometries%22+%3A+%5B%0D%0A+%7B%22x%22+%3A+-104.53%2C+%22y%22+%3A+34.74%7D%0D%0A%5D%0D%0A%7D&f=HTML If you look at how Robert handles this in his shapefile widget by creating an array of geometries from the array of graphics, sending this array to the project function then using the returned array of new geometries to update the geometry of each graphic in the original array. Regards Anthony
... View more
02-21-2013
12:25 PM
|
0
|
2
|
945
|
|
POST
|
Robert, Whilst upgrading our applications from server 9.3.1 to 10.1 I have noticed a difference in how the geometry services handles requests that do not specify an output spatial reference when using srs 4326 On a 9.3.1 and 10 server it returns the result in 4326: http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Geometry/GeometryServer/buffer?geometries=%7B%0D%0A%22geometryType%22+%3A+%22esriGeometryPoint%22%2C%0D%0A%22geometries%22+%3A+%5B%0D%0A+%7B%22x%22+%3A+-104.53%2C+%22y%22+%3A+34.74%7D%0D%0A%5D%0D%0A%7D&inSR=4326&outSR=&bufferSR=102100&distances=20&unit=9036&unionResults=true&f=HTML On 10.1 it returns the result in what I presume is web mercator http://serverapps101.esri.com/arcgis/rest/services/Geometry/GeometryServer/buffer?geometries=%7B%0D%0A%22geometryType%22+%3A+%22esriGeometryPoint%22%2C%0D%0A%22geometries%22+%3A+%5B%0D%0A+%7B%22x%22+%3A+-104.53%2C+%22y%22+%3A+34.74%7D%0D%0A%5D%0D%0A%7D&inSR=4326&outSR=&bufferSR=102100&distances=20&unit=9036&unionResults=true&geodesic=false&f=pjson If you provide an output sr it's fine: http://serverapps101.esri.com/arcgis/rest/services/Geometry/GeometryServer/buffer?geometries=%7B%0D%0A%22geometryType%22+%3A+%22esriGeometryPoint%22%2C%0D%0A%22geometries%22+%3A+%5B%0D%0A+%7B%22x%22+%3A+-104.53%2C+%22y%22+%3A+34.74%7D%0D%0A%5D%0D%0A%7D&inSR=4326&outSR=4326&bufferSR=102100&distances=20&unit=9036&unionResults=true&geodesic=false&f=pjson Why am I mentioning this? Well it stops the apply buffer to search from working when using a geographic projection, I corrected it by setting the output SR on the bufferparameters to map.spatialreference. Not sure if you have picked up on this, hope all makes sense, Love all the enhancements your are making Regards Anthony
... View more
02-21-2013
09:06 AM
|
0
|
0
|
2020
|
|
POST
|
Jason, The easiest way I use to track the messages going back and forth is to use firefox with the firebug plugin or IE and fiddler. Regards Anthony
... View more
02-21-2013
06:35 AM
|
0
|
0
|
529
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 11-01-2016 01:57 PM | |
| 1 | 02-04-2013 01:05 AM | |
| 1 | 04-11-2013 09:53 PM | |
| 1 | 04-03-2013 09:42 AM | |
| 1 | 07-25-2014 10:58 AM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:22 AM
|