|
POST
|
Hi Tracy, I just did the test, you need to extract the contents of the AIR SDK archive and overwrite the existing SDK files. Unzip the AIR SDK and overwrite your previous SDK fille, and that's why the documentation suggest to backup the original SDK folder.
... View more
11-15-2013
09:50 AM
|
0
|
0
|
1181
|
|
POST
|
http://help.adobe.com/en_US/air/build/WS2d8d13466044a7337d7adee012406959c52-8000.html
... View more
11-15-2013
09:22 AM
|
0
|
0
|
1181
|
|
POST
|
Hi Steve, You can set the <esri:map wrapAround180="false"> if you don't want to see the around map. I don't think this relate to a bug.
... View more
11-15-2013
09:20 AM
|
0
|
0
|
595
|
|
POST
|
Better to upgrade to newer version of the Flex API 3.5 to see if the issue still have. http://www.esri.com/apps/products/download/index.cfm?fuseaction=download.main&downloadid=1027
... View more
11-11-2013
06:15 AM
|
0
|
0
|
308
|
|
POST
|
Hi Pedro, Check this link might help. http://www.seanhsmith.com/2010/03/29/flex-for-free-setting-up-the-flex-4-sdk-with-eclipse-ide/
... View more
11-11-2013
06:11 AM
|
0
|
0
|
413
|
|
POST
|
Hi Lixin, I don't know about any widget has that the projection, but theoretically by using Flex API can hit the map server to re-project by using the GeometryService class, you can check this sample here: https://developers.arcgis.com/en/flex/sample-code/project-a-point.htm For Flex Viewer, check about the map content config file: http://resources.arcgis.com/en/help/flex-viewer/concepts/#/Map_content/01m30000005p000000/
... View more
11-08-2013
12:50 PM
|
0
|
0
|
668
|
|
POST
|
Hi Roland, I saw your first part of the feature layer drawing info in your REST services. How did your mxml file to consume those feature template? I am not really sure you just want to show feature symbol as legend or to create features by using the feature template. Please see these links as reference: For legend used: https://developers.arcgis.com/en/flex/sample-code/legend-component.htm For Template Picker" https://developers.arcgis.com/en/flex/sample-code/templatepicker.htm
... View more
11-05-2013
12:55 PM
|
0
|
0
|
554
|
|
POST
|
Hi Jefferson, If you was changing the edit widget according to your custom application, you would need to make changes to the .xml file present at the below location: C:\Inetpub\wwwroot\flexviewer\widgets\Edit\EditWidget.xml You don't need to make any changes to the .swf files present. If you would be working with the Source code in Flash builder and creating any custom widget in an mxml file, once you builds that mxml file it would generate a .swf file Hope this answer your question.
... View more
11-05-2013
07:49 AM
|
0
|
0
|
315
|
|
POST
|
Hi Yamin, I am not really sure where the Dynmaic Layers support for clustering. But you can start read the sample code: https://developers.arcgis.com/en/flex/sample-code/clustering.htm By changing the tag <esri:FeatureLayer> to <esri: DynamicLayer>. I would suggest start from one layer then move to 2 and more sublayers under Data Layers catgory. For Sublayers information you can reference this thread: http://forums.arcgis.com/threads/66987-How-do-you-dynamically-define-sublayers Hope these tips can help. Good Luck!
... View more
11-05-2013
07:46 AM
|
0
|
0
|
401
|
|
POST
|
Hi Filip, The alternative solution for this issue is to disable Editor Tracking. Thank you.
... View more
11-05-2013
06:33 AM
|
0
|
0
|
1054
|
|
POST
|
Hi Fengyun, Would you provide me detail information about this issue? Plus, Esri released the new ArcGIS Runtime SDK for iOS 10.2. The API supports developing applications for iOS 7 now. https://developers.arcgis.com/en/ios/info/what-s-new-10-2-.htm Hope this help the issue.
... View more
10-30-2013
12:46 PM
|
0
|
0
|
391
|
|
POST
|
Hi Filip, I think this is the bug related with the Editor tracking. Check this Bug report page on esri support page: http://support.esri.com/en/bugs/nimbus/TklNMDkyNTgy
... View more
10-24-2013
06:09 AM
|
0
|
0
|
1054
|
|
POST
|
Hi Anatolii, This is a good start to check FeatureDataGrid on silverlight sample: http://resources.arcgis.com/en/help/silverlight-api/samples/start.htm#FeatureDataGrid Also this is the silverlight API about Datagrid http://resources.arcgis.com/en/help/silverlight-api/apiref/api_start.htm?ESRI.ArcGIS.Client.Toolkit~ESRI.ArcGIS.Client.Toolkit.FeatureDataGrid.html
... View more
10-22-2013
08:51 AM
|
0
|
0
|
565
|
|
POST
|
Hi Steve, This is a demo code might solve your issue. You can change the line color and width without refreshing the map. <?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:mx="library://ns.adobe.com/flex/mx"
xmlns:esri="http://www.esri.com/2008/ags"
xmlns:s="library://ns.adobe.com/flex/spark"
pageTitle="Basic InfoSymbol example">
<fx:Style >
@namespace s "library://ns.adobe.com/flex/spark";
@namespace mx "library://ns.adobe.com/flex/mx";
@namespace esri "http://www.esri.com/2008/ags";
.myStyle
{
backgroundColor: #FF0000;
border-color: #578DB8;
border-thickness: 2;
info-placement: bottomright;
}
</fx:Style>
<fx:Script>
<![CDATA[
// import com.esri.ags.Graphic;
// import com.esri.ags.events.GraphicEvent;
// import com.esri.ags.events.GraphicsLayerEvent;
//
// import mx.events.ColorPickerEvent;
//
// protected function colorpicker1_changeHandler(event:ColorPickerEvent):void
// {
// //FlexGlobals.topLevelApplication.styleManager.getStyleDeclaration('.myStyle').setStyle('backgroundColor',event.currentTarget.selectedColor);
// mygraphic.styleManager.getStyleDeclaration('.myStyle').setStyle('backgroundColor',event.currentTarget.selectedColor);
// mygraphic.invalidateProperties(); // doesn't do anything
// graphicslayer.refresh(); // doesn't do anything
// graphicslayer.invalidateDisplayList(); // doesn't do anything
//
// }
//
// protected function graphiclayer_changedHanleder(event:GraphicsLayerEvent):void
// {
// graphicslayer.add(graphicslayer);
// }
]]>
</fx:Script>
<fx:Declarations>
<esri:SimpleLineSymbol id="infoSymbol1"
color="{lineColor.selectedColor}"
width="{lineWidth.value}"
/>
</fx:Declarations>
<s:controlBarContent>
<s:ToggleButton id="color"/>
</s:controlBarContent>
<esri:Map>
<esri:extent>
<esri:Extent xmin="-17526410" ymin="-6369184" xmax="3557" ymax="13433510">
<esri:SpatialReference wkid="102100"/>
</esri:Extent>
</esri:extent>
<esri:ArcGISTiledMapServiceLayer url="http://server.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer"/>
<esri:GraphicsLayer id="graphicslayer">
<esri:Graphic id="mygraphic"
symbol="{infoSymbol1}"
visible="{!lineColor.selected}">
<esri:geometry>
<esri:Polyline>
<fx:Array>
<fx:Array>
<esri:MapPoint x="15558700" y="1770100"/>
<esri:MapPoint x="12959100" y="2261100"/>
<esri:MapPoint x="11901900" y="3238400"/>
<esri:MapPoint x="1447100" y="4244300"/>
</fx:Array>
</fx:Array>
</esri:Polyline>
</esri:geometry>
</esri:Graphic>
</esri:GraphicsLayer>
</esri:Map>
<!--Panel for changing color -->
<s:Panel right="20" top="20"
title="Color to change"
visible="{!color.selected}">
<s:Form alpha="0.9" backgroundColor="0xEEEEEE">
<s:layout>
<s:FormLayout gap="-12"/>
</s:layout>
<s:FormItem label="Color">
<mx:ColorPicker id="lineColor" selectedColor="0X009933" />
</s:FormItem>
<s:FormItem label="Width:">
<s:HSlider id="lineWidth"
width="100%"
liveDragging="true"
maximum="20"
minimum="0"
snapInterval="1"
value="8"/>
</s:FormItem>
</s:Form>
</s:Panel>
</s:Application>
... View more
10-21-2013
02:39 PM
|
0
|
0
|
544
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 07-20-2015 10:15 AM | |
| 1 | 07-31-2015 08:53 AM | |
| 1 | 01-28-2016 04:55 PM | |
| 1 | 02-22-2016 02:07 PM | |
| 1 | 05-20-2015 04:54 PM |
| Online Status |
Offline
|
| Date Last Visited |
06-27-2025
09:24 AM
|