|
POST
|
You can place the graphic that's using the InfoSymbol into a GraphicsLayer that is above the other one, or make sure the graphic using the InfoSymbol stays on top of the other graphics by calling moveToTop() on the GraphicsLayer and setting autoMoveToTop to false on the other graphics. http://help.arcgis.com/en/webapi/flex/apiref/com/esri/ags/layers/GraphicsLayer.html#moveToTop() http://help.arcgis.com/en/webapi/flex/apiref/com/esri/ags/Graphic.html#autoMoveToTop
... View more
01-04-2011
02:20 PM
|
0
|
0
|
753
|
|
POST
|
You can set map.zoomSliderVisible to false, and then create your own Navigation instance that you add to the map.staticLayer or over the map. http://help.arcgis.com/en/webapi/flex/apiref/com/esri/ags/components/Navigation.html http://help.arcgis.com/en/webapi/flex/apiref/com/esri/ags/Map.html#staticLayer
... View more
01-04-2011
02:14 PM
|
0
|
0
|
549
|
|
POST
|
One approach is to just take the html wrapper (myapp.html) that Flash Builder creates for your app and copy it to myapp.aspx and then add the asp code to it.
... View more
12-17-2010
11:16 AM
|
0
|
0
|
1333
|
|
POST
|
ArcGIS Server supports this if you publish a route layer in NAServer and then you'd use the Flex API's RouteTask: http://help.arcgis.com/en/webapi/flex/apiref/com/esri/ags/tasks/RouteTask.html
... View more
12-17-2010
10:13 AM
|
0
|
0
|
750
|
|
POST
|
Yes, this requires 10: http://help.arcgis.com/en/arcgisserver/10.0/apis/rest/find.html Thanks for letting us know that this is missing from the API docs. Would it be possible for you to use the QueryTask instead even though this means a separate request per layer?
... View more
12-17-2010
09:33 AM
|
0
|
0
|
617
|
|
POST
|
You can call getLegendInfos() on the 3 layers that implement the ILegendSupport interface and your responder will get an Array of LayerLegendInfo instances: http://help.arcgis.com/en/webapi/flex/apiref/com/esri/ags/layers/ILegendSupport.html
... View more
12-16-2010
12:20 PM
|
0
|
0
|
2211
|
|
POST
|
In the new Flex Viewer 2.2 - you can remove the ESRI Logo in the config.xml <esrilogovisible> This goes on the map tag like this: <map esrilogovisible="false"> For more options, see the help page at "Configure the Viewer" -> "Main configuration file": http://help.arcgis.com/en/webapps/flexviewer/help/index.html
... View more
12-16-2010
07:19 AM
|
0
|
0
|
958
|
|
POST
|
Brian, We'll look at supporting wkid on the layer tag for type "wms" in a future release. As a work-around, you can try this: <layer label="NOAA Infrared Satellite" type="wms" visible="false" visiblelayers="RAS_GOES_I4" url="http://nowcoast.noaa.gov/wms/com.esri.wms.Esrimap/obs?srs=EPSG:102113"/> This seems to work but is service dependent. Any additional url parameters are sent by the API in its requests to the servcie. The API will overwrite any it uses, but since it's case-sensitive and it uses SRS, then both srs and SRS will be sent and in this instance, the service seems to look for the srs parameter first.
... View more
12-15-2010
03:06 PM
|
0
|
0
|
2883
|
|
POST
|
Here's one sample: http://help.arcgis.com/en/webapi/flex/samples/index.html?sample=SelectParcels The important part is setting Query.geometry: http://help.arcgis.com/en/webapi/flex/apiref/com/esri/ags/tasks/supportClasses/Query.html#geometry
... View more
12-15-2010
10:49 AM
|
0
|
0
|
1062
|
|
POST
|
You can turn on and off the sub-layers of a dynamic service by setting the visibleLayers property: http://help.arcgis.com/en/webapi/flex/apiref/com/esri/ags/layers/ArcGISDynamicMapServiceLayer.html#visibleLayers
... View more
12-15-2010
08:16 AM
|
0
|
0
|
916
|
|
POST
|
This sample may help: http://forums.esri.com/Thread.asp?c=158&f=2421&t=273322&mc=3#844179
... View more
12-15-2010
08:05 AM
|
0
|
0
|
991
|
|
POST
|
I'm not able to reproduce this. When I make the Legend component too small, I get horizontal scroll bars. Can you try updating this with your service? <?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:esri="http://www.esri.com/2008/ags">
<s:layout>
<s:HorizontalLayout gap="0"/>
</s:layout>
<esri:Legend id="myLegend"
width="150" height="100%"
layers="{[ legendLayer ]}"
map="{myMap}"
respectCurrentMapScale="true"/>
<esri:Map id="myMap">
<esri:extent>
<esri:Extent xmin="-10753431" ymin="4624151" xmax="-10737799" ymax="4635884">
<esri:SpatialReference wkid="102100"/>
</esri:Extent>
</esri:extent>
<esri:ArcGISTiledMapServiceLayer id="baseLayer" url="http://server.arcgisonline.com/ArcGIS/rest/services/World_Topo_Map/MapServer"/>
<esri:ArcGISDynamicMapServiceLayer id="legendLayer" name="Kansas Hydrography"
url="http://sampleserver3.arcgisonline.com/ArcGIS/rest/services/Hydrography/Watershed173811/MapServer"/>
</esri:Map>
</s:Application>
... View more
12-14-2010
01:20 PM
|
0
|
0
|
916
|
|
POST
|
Hi dpaddock, I made the change in config.xml on basemaps: <layer label="axa" type="wms" visible="true" visiblelayers="0,2" wkid="EPSG:31600" url="http://localhost:8080/geoserver/wms"/> and i received a blank page..ESRI logo si loaded and staying on Transferring data from localhost.. i have a crossdomain.xml if help. The wkid goes on the map tag, but it may not be needed. Make sure the visiblelayers match the available layer names. You may need to use a tool like HttpFox to see what the request/responses are.
... View more
12-14-2010
07:35 AM
|
0
|
0
|
2189
|
|
POST
|
Here's a great tool showing the typical performance of various protocols: http://www.jamesward.com/census/ AMF is the fastest way to request the data, but if you can embed it and don't mind redeploying that every month, that's probably the fastest option. AGS Server 10 supports AMF output of queries.
... View more
12-14-2010
07:30 AM
|
0
|
0
|
1634
|
| 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
|