|
POST
|
include this code: map.addEventListener(MouseEvent.MOUSE_WHEEL, map_mouseMoveHandler); directly under this line: map.addEventListener(MouseEvent.MOUSE_MOVE, map_mouseMoveHandler); and the scale will refresh when you zoom in and out. Otherwise it is possible to zoom in and out and not have the scale refresh until you actually move the mouse pointer.... Works great, however also added this line under that map.addEventListener(MouseEvent.DOUBLE_CLICK, map_mouseMoveHandler);
so that it gets updated on double-click to zoom in also. R_
... View more
07-30-2012
04:07 PM
|
0
|
0
|
2661
|
|
POST
|
Thank you. Was so close, but could not get it to work. Made this change AND made sure my as3xls src stuff was in the com folder and all is working and happy. R_
... View more
07-30-2012
03:56 PM
|
0
|
0
|
1986
|
|
POST
|
Is this the standard legend widget or the dynamicLegend? Also, is there a chance the service(s) were published using 9.3.1 or something earlier than 10? Might try to re-publish the service, clear cache, etc. R_
... View more
07-30-2012
02:39 PM
|
0
|
0
|
775
|
|
POST
|
As you said, you could add an operational layer with alpha="0.0" and exclude from the TOC. This would initialize, but would never be visible to the user. I'm sure there is a more "proper" way to do this, but, this is ESRI afterall, so thought I'd chime in with a potential "work around" 😮 R_
... View more
07-30-2012
02:32 PM
|
0
|
0
|
628
|
|
POST
|
I have it set to <layers onlythese="false">. However, if I have a layer listed below ( in the <layer> tags), it will "try" to map according to the <field> tags, but will NOT honor <fields all="true" />. I.e., I have a building layer in my map, if I click on it with the idetify with the following settings: <fields all="true" />, the infowindow will popup with the layer name, but no attribute information. If I actually map some fields <fields all="false">
<field name="name" />
<field name="DEC_UNIT" popuponly="true" />
</fields> then, I will get information for those fields. ALSO, the other option is to remove the "Buildings" layer from my identifywidget.xml. Then, ALL attributes are displayed. So, if you want to get all info for all visible layers, try removing them from the xml and see if that makes a difference (makes it behave like <fields all="true" /> ). Hope this helps figure something out, R_
... View more
07-30-2012
12:08 PM
|
0
|
0
|
1256
|
|
POST
|
Since I seem to be the only one that does not experience this, I looked again. My site is not external, and I do not have 10.1 so I have commented out the taskurl portion of my printwidget.xml. <configuration>
<!-- change this URL to your own Export Web Map Task (requires ArcGIS Server 10.1), or just remove the taskurl tag to get quick printing -->
<!-- <taskurl>http://sampleserver6.arcgisonline.com/ArcGIS/rest/services/Utilities/PrintingTools/GPServer/Export%20Web%20Map%20Task</taskurl>-->
</configuration>
Howerver, If I uncomment this line out, even though I can't utilize the ESRI export task server, I then get the hang and exclamation point error if I try to run it with a eSearch selection. If I don't have a selection, then I get the error messages related to the task server not being able to see my services. So, for what it's worth, it seems to be related to the enhanced features of the print widget as "quick printing" does not do it. Hope this helps, R_
... View more
07-24-2012
02:24 PM
|
0
|
0
|
1660
|
|
POST
|
I did not need transparancy, so I cached with jpeg format. If you need tranparancy, cache with a png or some other that supports that (if not too large, you could just load as dynamic and no need to cache). I set the display options to display at all scales, then create the cache. After the cache is created, I re-set the display scales and re-publish the service. Then, I just load the service at the bottom of my operational layers. that way, it is on top of everything once I set visible="true". R_
... View more
07-24-2012
12:03 PM
|
0
|
0
|
1568
|
|
POST
|
We didn't see any advantage when we had the trial image server so we don't have that either. I am just publishing the image catalog as a mapservice through ArcMap. R_
... View more
07-24-2012
11:15 AM
|
0
|
0
|
1568
|
|
POST
|
Is that xml for the point or polygon layer? are your field names the same in both? R_
... View more
07-24-2012
08:39 AM
|
0
|
0
|
707
|
|
POST
|
I have something similar. What I did was create an image catalog of all the images, then make a service from that. set scale dependancies so they only draw at a level that I want them, then cache that and use as tiled service. Works quite well. I do, however, have to turn on/off the layer when needed, but it is only one operational layer this way, and since it's cached, it is plenty fast. Suspect you could tie it to a hover event somehow. Just a thought, R_
... View more
07-23-2012
11:27 AM
|
0
|
0
|
1568
|
|
POST
|
Not sure if it is related, but I find it intersting that your print task or does not show in your Rest Services Directory.<http://apps.tucson.ars.ag.gov:6080/arcgis/rest/services> In fact, Idon't see any of the folders in there either. If you go to the task itself, it is there, but not listed in the directory structure as ESRI's is here: <http://servicesbeta4.esri.com/arcgis/rest/services> where you "see" the folder/task listed under every level. R_
... View more
07-23-2012
07:47 AM
|
0
|
0
|
1333
|
|
POST
|
Uncompiled version 3.0 final. I am looking for a way to display a stand alone table on the FV. ideally, would be able to have a hyperlink from the popup window that opens/displays a table, OR, separate buttons that I can click that will open the table within the flex app. Anybody done this yet or have any suggestions? Thanks, R_
... View more
07-19-2012
04:59 PM
|
0
|
1
|
1128
|
|
POST
|
Tom, The tiles from TiledMapServiceLayer cannot be re-projected. Make the tiled map service as the first layer if you want to add other layers with a different spatial reference. If not, have all the layers in the same spatial reference. Ok, I did get it to work this way as well. However ALL my services need to be loaded as dynamic for this to work. I find if you have many other layers on there, loading the arcgisonline as dynamic and re-projecting it on the fly is much faster than having to re-project all my data on the fly. Plus, if I do it this way, all the coordinates listed are relative to the ESRI basemap projection, not your local data. R_
... View more
07-19-2012
04:10 PM
|
0
|
0
|
596
|
|
POST
|
I put my basemap at the top of the list. That way, it will pick up on the projection of "my" data. Then, I just load the arcgisonline services as "dynamic", but below the WGS84 mapservice. Will slow it down a bit, but can project on the fly. Don't think it can on the fly tiles that were pre-made in mercator. R_
... View more
07-19-2012
03:19 PM
|
0
|
0
|
596
|
|
POST
|
Hi, using flexview 3.0 final uncompiled. I am using the popups to identify a polygon layer that I have loaded with visible="true" alpha="0.0" This allows me to have the layer loaded so I can identify it with the popup, but is not visible. However, when you click on a polygon, it highlights the perimeter of the selected polygon and shows the popup window with the information. Is there a way to have it also change the fill color of the selected polygon? Or, have it temporarily set the alpha="1.0" for the currently selected polygon, and remove it once the popup selection is cleared or changed? Basically, I don't want all the polys visible most the time, only the currently selected one, but want it to be obvious what "area" we are identifying (the outline doesn't quite do it when the polys are larger than the display extent). Thanks for any direction, R_
... View more
07-19-2012
01:07 PM
|
0
|
0
|
812
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | yesterday | |
| 1 | a week ago | |
| 1 | 04-02-2026 09:50 AM | |
| 1 | 04-01-2026 01:21 PM | |
| 1 | 10-08-2025 11:59 AM |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|