|
POST
|
See: http://resources.arcgis.com/content/arcgisdesktop/10.0/arcgis-desktop-system-requirements
... View more
09-21-2010
08:46 AM
|
0
|
0
|
472
|
|
POST
|
ArcGIS Server's REST API is backwards compatible, so you can user version 1.x of the ArcGIS API for Flex with ArcGIS Server 10. See first FAQ under References at: http://resources.esri.com/help/9.3/arcgisserver/apis/flex/help/index.html
... View more
09-20-2010
04:02 PM
|
0
|
0
|
518
|
|
POST
|
About the utility function : GraphicUtil.getGeometries It extracts array of geometries from array of graphics Is there any way to get features that are outside and touching these geometries? I mean if there are 20 geometries (of graphics), I want to get features that are outside the 20 geometries touching them... You may be able to do this using a geoprocessing task: http://help.arcgis.com/en/webapi/flex/apiref/com/esri/ags/tasks/Geoprocessor.html
... View more
09-17-2010
01:44 PM
|
0
|
0
|
1537
|
|
POST
|
One way I solved this issue using an boolean variable that I set initially and the updateend checks for this boolean variable (only does zooming in the first time).. Another option may be to remove the updateEnd listener.
... View more
09-17-2010
01:43 PM
|
0
|
0
|
1537
|
|
POST
|
Can you try following the example of the existing code? If not, then maybe just hard-code it in MapManager.
... View more
09-17-2010
07:50 AM
|
0
|
0
|
1291
|
|
POST
|
You don't need the addLODs() unless you want to have more levels then are already available in your base layer. Currently the config doesn't support setting min or max scale for the levels. You could update ConfigManager to read these values and then MapManager to make use of them.
... View more
09-16-2010
11:32 AM
|
0
|
0
|
1291
|
|
POST
|
You can set the minScale and maxScale properties on layers. Sample: http://help.arcgis.com/en/webapi/flex/samples/index.html?sample=AddLODS Doc: http://help.arcgis.com/en/webapi/flex/apiref/com/esri/ags/layers/Layer.html#maxScale
... View more
09-16-2010
08:05 AM
|
0
|
0
|
1291
|
|
POST
|
QUERY_FEATURES_COMPLETE is for when you call the queryFeatures() method: http://help.arcgis.com/en/webapi/flex/apiref/com/esri/ags/layers/FeatureLayer.html#queryFeatures() Listen for updateEnd if you want to know when the FeatureLayer has finished loading new features and made them available in it's graphicProvider. http://help.arcgis.com/en/webapi/flex/apiref/com/esri/ags/layers/Layer.html#event:updateEnd
... View more
09-15-2010
01:56 PM
|
0
|
0
|
1537
|
|
POST
|
To convert a number to a Date, you just need to pass it to the Date's constructor like this: var myDate:Date = new Date(value);
... View more
09-15-2010
01:50 PM
|
0
|
0
|
1100
|
|
POST
|
Is this what you've tried to do? http://forums.arcgis.com/threads/8784-replace-powered-by-ESRI?p=38312&viewfull=1#post38312
... View more
09-15-2010
01:45 PM
|
0
|
0
|
1662
|
|
POST
|
Here's how I would do this. You could use featureSet.attributes, but I think looping through the features makes the code clearer.
var ids:Array = [];
for each (var graphic:Graphic in featureSet.features)
{
ids.push(graphic.attributes["Stop_ID"]);
}
var paramsCSV:String = ids.join();
... View more
09-10-2010
12:24 PM
|
0
|
0
|
1237
|
|
POST
|
If I understand correctly, you want a comma separated list of of values of one of the features' attributes? Is this correct? What is the name of the attribute? One note is that it's best to only call featureSet.attributes once since this creates a new Array every time it's called: http://help.arcgis.com/en/webapi/flex/apiref/com/esri/ags/FeatureSet.html#attributes
... View more
09-10-2010
11:47 AM
|
0
|
0
|
1237
|
|
POST
|
It looks like your params:Array only has one value in it. It needs to have more than one value for join() to concatenate them. You could try pushing values into the array inside your for loop, or just creating the string the way you want manually.
... View more
09-10-2010
10:10 AM
|
0
|
0
|
1237
|
|
POST
|
Try setting width and height on the TextArea in HTMLPopup.mxml.
... View more
09-10-2010
10:03 AM
|
0
|
0
|
1363
|
|
POST
|
In the next release you'll be able to set the width and height of the about box in the HeaderController.xml file.
... View more
09-10-2010
09:37 AM
|
0
|
0
|
1363
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 03-06-2017 01:13 PM | |
| 2 | 03-06-2017 02:12 PM | |
| 1 | 06-22-2010 12:01 PM | |
| 1 | 08-06-2012 09:29 AM |
| Online Status |
Offline
|
| Date Last Visited |
04-15-2025
04:18 PM
|