|
POST
|
Which versions of the Esri API and Adobe SDK are you using? That specific blog article was written before 2.x of the ArcGIS API for Flex existed, and before the 4.x versions of Adobe Flex SDK were released.
... View more
05-23-2011
06:50 AM
|
0
|
0
|
1451
|
|
POST
|
I saw that there is a RasterHistogram class for Javascript I'm not exactly sure what you mean. Could you provide a link to that RasterHistogram? I don't see it in the ArcGIS API for JavaScript doc...
... View more
05-20-2011
04:14 PM
|
0
|
0
|
435
|
|
POST
|
The application does not know that the data behind the feature layer has been updated. You can refresh it (too re-grab the data) by using the refresh method: http://help.arcgis.com/en/webapi/flex/apiref/com/esri/ags/layers/FeatureLayer.html#methodSummary
... View more
05-20-2011
12:47 PM
|
0
|
0
|
769
|
|
POST
|
an event layer get generated from x,y file.. Data Type: XY Event Source What version of server are you using? There was a bug related to event geometries not being returned in the requested spatial reference. This issue was fixed in ArcGIS Server 10.0 SP2 and 9.3.1 SP2 QIP. See also my post on http://forums.arcgis.com/threads/23720-Flexviewer-2.2-operational-layer-issue-points-quot-clustered-quot-at-prime-meridian
... View more
05-20-2011
12:30 PM
|
0
|
0
|
1086
|
|
POST
|
I'm not familiar with a transparency widget, but in general (for TOC etc) you have two options: add multiple layers of type "dynamic" (and set the visiblelayers property to an individual sublayer) or use multiple layers of type "feature" (which always only point to individual sublayers). The main difference between these is that the "dynamic" maps are drawn on the server and sent to your browser as an image, while for "feature" the features are sent from the server as features, then drawn in the browser. Note that currently (ArcGIS 10.0), the REST API doesn't support changing transparency on sub-layers, which is why you have to ask for multiple layers separately if you want them to have different transparencies (on-the-fly). With the next release of ArcGIS, 10.1, this might change.
... View more
05-20-2011
09:09 AM
|
0
|
0
|
903
|
|
POST
|
Do you mean just one of the <operationallayers>, or the basemap plus that operational layer? If users turn off the layer in the TOC, what would you want the overview map to do?
... View more
05-20-2011
08:28 AM
|
0
|
0
|
879
|
|
POST
|
You can modify the text that shows up after the layer name using the configurable <featurelayernotvisibletext> label in the Edit widget configuration file. "<featurelayernotvisibletext> - Label to display when a feature layer is not visible (default for English is "feature layer is either not visible or out of scale range")." http://help.arcgis.com/en/webapps/flexviewer/help/index.html#/Edit_widget/01m30000000v000000/
... View more
05-20-2011
07:33 AM
|
0
|
0
|
774
|
|
POST
|
Unfortunately the HTML Popup Type set up in ArcMap is not automatically used. The best way is probably to configure the pop-up in the flex viewer. See examples at http://help.arcgis.com/en/webapps/flexviewer/help/index.html#/Pop_up_configuration_files/01m30000002q000000/. Or did you already try this?
... View more
05-20-2011
07:30 AM
|
0
|
0
|
787
|
|
POST
|
You might find the "Extent Helper" helpful: http://help.arcgis.com/en/webapps/flexviewer/help/index.html#/Helper_applications/01m30000002m000000/
... View more
05-20-2011
07:25 AM
|
0
|
0
|
1391
|
|
POST
|
Hello Gottsegen 🙂 I have a dynamic map service with 11 layers. I'm trying to display one layer in flex viewer. To draw just some layers within a mapservice, use the visiblelayers property (a comma-separated list): <layer label="Regions" type="dynamic" visible="true" alpha="0.5" visiblelayers="2" url="http://10.9.5.18/ArcGIS/rest/services/regions_gov_office_OED/MapServer"/> http://help.arcgis.com/en/webapps/flexviewer/help/index.html#/The_Layer_tag/01m30000000p000000/
... View more
05-19-2011
10:44 PM
|
0
|
0
|
903
|
|
POST
|
Im not exactly sure which version the current application is You can right-click the map and select "About ArcGIS API for Flex..." and "About ArcGIS Viewer for Flex..." to find out which versions of these your application is using. If it doesn't mention the Viewer, then it's not using any supported version of the "ArcGIS Viewer for Flex". The 1.x and 2.x versions do not play well together becasue they are based on sufficiently different versions of Adobe Flex SDK. The following links might help you find a 2.x version of that widget: http://geoportal.sourceforge.net/ http://forums.arcgis.com/threads/11806-flex-4-geoportal-toolkit-extension-widget http://geoportal.svn.sourceforge.net/viewvc/geoportal/components/flex/
... View more
05-16-2011
05:13 PM
|
0
|
0
|
1200
|
|
POST
|
What does the <map> section of your config file look like?
... View more
05-16-2011
04:51 PM
|
0
|
0
|
1747
|
|
POST
|
Are you using one of the viewer code bases or your own API-based application? What version are you upgrading from? The package name change from com.esri.ags.symbol to com.esri.ags.symbols was part of the 1.x to 2.0 migration. http://help.arcgis.com/en/webapi/flex/help/index.html#/Migrating_from_1_3_to_2_0/017p0000000z000000/ Is the GeoPortalSearchWidget.swc you are trying to use based on the 1.x API?
... View more
05-16-2011
08:34 AM
|
0
|
0
|
1200
|
|
POST
|
It shouldn't make a difference whether the FeatureLayer is based on a MapService or a FeatureService. The key aspect is how the service directory presents the symbology. The FeatureLayer gets the information from the symbol metadata which you can see on the layer page in the service directory. For example for http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/TaxParcel/AssessorsParcelCharacteristics/MapServer/2 Commercial Apartment Vacant Description: Symbol: Simple Fill Symbol: Style: esriSFSSolid, Color: [254, 177, 25, 255] Outline: Simple Line Symbol: Style: esriSLSSolid, Color: [156, 156, 156, 255], Width: 1 I think the key is how the symbol was defined in the MXD (and then represented on the server). The REST documentation, http://help.arcgis.com/en/arcgisserver/10.0/apis/rest/symbol.html#sfs, lists what is supported (in REST): "style" : "< esriSFSBackwardDiagonal | esriSFSCross | esriSFSDiagonalCross | esriSFSForwardDiagonal | esriSFSHorizontal | esriSFSNull | esriSFSSolid | esriSFSVertical >", Your first step should probably be to set up a service where the Service Directory lists one of these hatch patterns.
... View more
05-14-2011
09:26 AM
|
0
|
0
|
1252
|
|
POST
|
No, popups are not supported for WMS. "...the ArcGIS Viewer for Flex supports pop-ups windows for tiled and dynamic map services, as well as feature layers." http://help.arcgis.com/en/webapps/flexviewer/help/index.html#/Pop_up_configuration_files/01m30000002q000000/
... View more
05-13-2011
01:23 PM
|
0
|
0
|
2670
|
| Title | Kudos | Posted |
|---|---|---|
| 3 | 03-11-2026 11:16 AM | |
| 2 | 03-17-2025 08:24 AM | |
| 3 | 03-17-2025 07:27 AM | |
| 4 | 02-26-2025 11:37 AM | |
| 1 | 03-23-2023 04:36 PM |
| Online Status |
Offline
|
| Date Last Visited |
04-14-2026
04:21 PM
|