|
POST
|
Kim, Publishing a service with OGC capabilities such as WMS and WFS is pretty much a case of checking a few check boxes on in the service capabilities, it should not be a massive overhead. Just be careful when you use the term 'GeoServer' as this is the name of an open source geographic web server, I would always refer to the server as the arcgis server to avoid confusion. regards Anthony
... View more
03-04-2015
11:47 AM
|
1
|
1
|
2698
|
|
POST
|
Robb, Yes, all the tags can be found in the help here: ArcGIS Viewer for Flex Regards Anthony
... View more
03-04-2015
11:41 AM
|
2
|
0
|
434
|
|
POST
|
Thomas, Have a look at the LocalLayerWidget and AccessifizrWidget developed by Adam Drackley: LocalLayerWidget and AccessifizrWidget Regards Anthony
... View more
02-25-2015
06:09 AM
|
0
|
0
|
2037
|
|
POST
|
Robert, i would suggest you try and use a UNC path if possible, that way the script can be shared with other people and the path should still work without the other person having the same shared drive letters, eg: addLayer = arcpy.mapping.Layer(r"\\<servername>\<Shared Directory>\Las Cruses SSO\.......\layername.lyr") Note your path must actually be to an existing .lyr file Regards Anthony
... View more
02-17-2015
02:16 PM
|
0
|
0
|
704
|
|
POST
|
Brandon, Feature services have a max feature return value for query tasks so it may be this that is causing your issue. You can up the limit (default is 1000) but your application may take a hit on performance depending on the number of attributes your features have and how complex the geometry is. Do some test with changing your max feature count value to see what works, Regards Anthony
... View more
02-08-2015
12:38 AM
|
1
|
4
|
1041
|
|
POST
|
Kevin, What screen resolution do you have? Have you tried using a greater resolution? regards Anthony
... View more
02-05-2015
10:16 AM
|
1
|
1
|
730
|
|
POST
|
i'm not sure if web app builder will work against your ipaddress, I have always used the machine name. How to Find Your Computer's Name | Yale ITS
... View more
02-05-2015
05:17 AM
|
0
|
0
|
772
|
|
POST
|
Finbar, Once you have node.js running i.e. your screenshot above, open a internet browser and enter the following URL, replacing yourmachine name with the name of your machine: http://[yourmachinename]:3344/webappbuilder This should open the web app builder in the browser Regards Anthony
... View more
02-05-2015
03:00 AM
|
1
|
2
|
772
|
|
POST
|
Matthew, Instead of using two arrays holding your values I would suggest using a dictionary: Python — Basics of Python Dictionary: Looping & Sorting | YUJI TOMITA Eg: codes = [ '007' : 'Archuleta' , '013' : 'Boulder' , '014' : 'Broomfield'] That way your county codes and names are linked to each other and you can just loop through your dictionary: for key,val in codes.items(): print key,val
... View more
02-04-2015
07:23 AM
|
2
|
2
|
1966
|
|
POST
|
Jon, There is no capability for text formatting in the attribute table, you can only provide formatting to labels and dynamic text from the attribute table Regards Anthony
... View more
02-04-2015
07:00 AM
|
1
|
2
|
754
|
|
POST
|
Correct you need to rebuild geolocators if your base data changes which is a bit of a pain. Another option could be to use Roberts Esearch widget, this allows you to fire a search using a URL parameter: ArcGIS Viewer for Flex rscheitlin/eSearch · GitHub
... View more
02-04-2015
04:04 AM
|
1
|
1
|
1736
|
|
POST
|
Andrew, There are no settings in the config that you can change to make the list longer, you will need to change the source code if you have that ability. The required change is in the MapSwitcherWidget.mxml and you are looking for the BorderContainer called "opLayersContainer" on line 469: arcgis-viewer-flex/MapSwitcherWidget.mxml at develop · Esri/arcgis-viewer-flex · GitHub You can see the current height is set to 180 you would need to increase that. Regards Anthony
... View more
02-04-2015
03:51 AM
|
0
|
0
|
433
|
|
POST
|
Jon, Instead of searching your against your maps service you could create a geocode service for your data and geolocate against that instead. Changing the sensitivity settings <minscore> in the geocode service may narrow your search results. Regards Anthony P.S. You may get more visibility of your question by the right people if you move your thread to the flex viewer space ArcGIS Viewer for Flex
... View more
02-04-2015
03:22 AM
|
1
|
1
|
1736
|
|
POST
|
Aaron, Here is a solution using python, this will account for any null values: def mean(val1, val2, val3): fieldList = [val1, val2, val3] validList = [] for i in fieldList: if i != None: validList.append(i) meanVal = sum(validList)/len(validList) return meanVal or if you are sure there is no null values a simple sum([!val1!, !val2!, !val3!])/3 should work
... View more
02-03-2015
11:49 AM
|
2
|
0
|
3795
|
|
POST
|
Christina, Unfortunately no not via the config. There was a blog on this years ago with the sample code if you have the ability to amend the source code: Thunderhead Explorer: Constraining Map Extent Constrained Map Extent in Flex Lock/Constrain Extents Flexviewer 3.1 Restrict View Port Bounds in Flex Viewer 2.x Regards Anthony
... View more
02-03-2015
11:24 AM
|
0
|
1
|
532
|
| 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
|