|
POST
|
There's an extra space in this line: <![CDATA [Parcel ID: {OwnershipRecords.PID} <br> It should be: <![CDATA[Parcel ID: {OwnershipRecords.PID} <br>
... View more
08-10-2011
09:32 AM
|
0
|
0
|
2235
|
|
POST
|
Popup Problems in SFV2.4? Is there a maximum number of fields that can be displayed in a popups configuration? I need to display 15 fields, but anything more than 8 will only work on the first click. After the first click the info popup box is empty except for "title" and "zoom to" Any suggestions appreciated Thanks Ned See a fix for this here: http://forums.arcgis.com/threads/36513-2.4-PopUp-scrollbar-bug
... View more
08-04-2011
03:59 PM
|
0
|
0
|
1690
|
|
POST
|
A bug has been found in the 2.4 release where if you have many fields shown and the scrollbar appears in the PopUp, it only works the first time the PopUp opens. The second time it opens, only the title is shown. The field area is blank. The fix for this is in the attached PopUpRendererSkin. Here's more information about how to use "custom" skins: http://help.arcgis.com/en/webapi/flex/help/index.html#/Styling_and_skinning_overview/017p0000001s000000/
... View more
08-04-2011
03:59 PM
|
0
|
25
|
9285
|
|
POST
|
Try just changing the extent and then listen for extentChange on the Map and then change the layerDefinitions in your extentChange handler.
... View more
08-02-2011
09:13 AM
|
0
|
0
|
517
|
|
POST
|
2.4 added this flag: http://help.arcgis.com/en/webapi/flex/apiref/com/esri/ags/Map.html#infoWindowRenderersEnabled The source to the skins is in the zip file. See: http://help.arcgis.com/en/webapi/flex/help/index.html#/Styling_and_skinning_overview/017p0000001s000000/
... View more
08-02-2011
08:58 AM
|
0
|
0
|
731
|
|
POST
|
You need to pass an instance. e.g. <esri:GraphicsLayer id="debugGL2" symbol="{sfs}" renderer="{new MyRenderer()}"/>
... View more
08-02-2011
08:51 AM
|
0
|
0
|
1029
|
|
POST
|
Try: clickGraphic.attributes = {objectid: resultGraphic.attributes.objectid, length: resultGraphic.attributes. length};
... View more
08-02-2011
08:47 AM
|
0
|
0
|
489
|
|
POST
|
See: http://help.arcgis.com/en/webapi/flex/apiref/com/esri/ags/components/AttributeInspector.html#singleToMultilineThreshold
... View more
08-01-2011
04:26 PM
|
0
|
0
|
793
|
|
POST
|
See this link for what the AsyncResponder is expecting: http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/mx/rpc/AsyncResponder.html
... View more
08-01-2011
04:09 PM
|
0
|
0
|
942
|
|
POST
|
If you're using AGS 10 and you need more information than is included in LayerInfo and you want to get it in one request for all of the layers in a service, see: http://help.arcgis.com/en/webapi/flex/apiref/com/esri/ags/layers/supportClasses/AllDetails.html
... View more
08-01-2011
03:59 PM
|
0
|
0
|
1195
|
|
POST
|
Here's a class called DegToDMS.as that comes with the Viewer's Coordinate widget: ////////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2010 Esri
//
// All rights reserved under the copyright laws of the United States.
// You may freely redistribute and use this software, with or
// without modification, provided you include the original copyright
// and use restrictions. See use restrictions in the file:
// <install location>/License.txt
//
////////////////////////////////////////////////////////////////////////////////
package widgets.Coordinate
{
//--------------------------------------
// Other metadata
//--------------------------------------
/**
* Utility class to pretty print decimal degree numbers.
* @private
*/
public final class DegToDMS
{
// Constants to define the format.
public static const LAT:String = "lat";
public static const LON:String = "lon";
/**
* Utility function to format a decimal degree number into a pretty string with degrees, minutes and seconds.
* @param decDeg the decimal degree number.
* @param decDir "lat" for a latitude number, "lon" for a longitude value.
* @return A pretty print string with degrees, minutes and seconds.
*/
public static function format(decDeg:Number, decDir:String):String
{
var d:Number = Math.abs(decDeg);
var deg:Number = Math.floor(d);
d = d - deg;
var min:Number = Math.floor(d * 60);
var av:Number = d - min / 60;
var sec:Number = Math.floor(av * 60 * 60);
if (sec == 60)
{
min++;
sec = 0;
}
if (min == 60)
{
deg++;
min = 0;
}
var smin:String = min < 10 ? "0" + min + "' " : min + "' ";
var ssec:String = sec < 10 ? "0" + sec + "\" " : sec + "\" ";
var sdir:String = (decDir == LAT) ? (decDeg < 0 ? "S" : "N") : (decDeg < 0 ? "W" : "E");
return deg + "\xB0 " + smin + ssec + sdir;
}
}
}
... View more
08-01-2011
03:49 PM
|
0
|
0
|
3472
|
|
POST
|
You should wait for the FeatureLayer to load before calling applyEdits() and you should pass it Graphic instances. You find this easier to use instead: http://help.arcgis.com/en/webapi/flex/apiref/com/esri/ags/tasks/FeatureLayerTask.html#applyEdits()
... View more
08-01-2011
03:31 PM
|
0
|
0
|
710
|
|
POST
|
Yes, you can make the request as soon as you like and then call setLoaded(true) when you're ready for loadMapImage() to be called.
... View more
08-01-2011
03:23 PM
|
0
|
0
|
611
|
|
POST
|
Starting with API 2.4, you can set this to false: http://help.arcgis.com/en/webapi/flex/apiref/com/esri/ags/Map.html#infoWindowRenderersEnabled
... View more
08-01-2011
03:03 PM
|
0
|
0
|
823
|
| 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
|