|
POST
|
attached Paul, are all of those failing for you? When I try them, all except for one seem to work just fine. The one that breaks have the icon specified to an image which when I try it on my machine, it can't find the images and thus shows the default icon. Maybe even on your server, it cant find the image and thus displays the default missing-icon image? For example, in the Rail_Construction_Camps_Points.kml it is referring a local icon: <Icon><href>camp.png</href></Icon>
... View more
08-31-2011
04:52 PM
|
0
|
0
|
5284
|
|
POST
|
Does the same thing happen with http://help.arcgis.com/en/webapps/flexviewer/live/index.html for you? Does the same thing happen when you use the default config.xml on your web server? If not, you might want to try simplify your application, for example removing widgets to see if any specific widget is causing the problem.
... View more
08-30-2011
08:33 AM
|
0
|
0
|
2155
|
|
POST
|
Not sure why that would happen... Does the same thing happen in multiple browsers? On multiple computers? Are you using the latest (currently 2.4) version of the viewer? Do you have any custom widgets? Could you share the URL?
... View more
08-30-2011
08:21 AM
|
0
|
0
|
2155
|
|
POST
|
How can you tailor [LocateWidget] to only display streets in your county, without having to enter the city or zip ...? County is not one of the field supported by the locator, but if it was a city, state, or zip code it could be done... The Flex Viewer include an example of the latter in the widgets/Locate folder called LocateWidget_RanchoCucamonga.xml which you can also see online at http://help.arcgis.com/en/webapps/flexviewer/live/widgets/Locate/LocateWidget_RanchoCucamonga.xml It has the default value set and the visibility of the field turned off, thus "hardcoding" it and not allowing you end-user to change it. <fields>
<field name="City" defaultvalue="Rancho Cucamonga" editable="false"/>
<field name="Zip" defaultvalue="91730" listvalues="91701,91729,91730,91737,91739"/>
<field name="Zip4" visible="false"/>
<field name="State" defaultvalue="CA" visible="false"/>
<field name="Country" defaultvalue="USA" visible="false"/>
</fields> For more information, see http://links.esri.com/locatewidget
... View more
08-30-2011
08:12 AM
|
0
|
0
|
1036
|
|
POST
|
I can't get a popup to work on flared points either, is there something i am doing wrong? No, you're not. This isn't supported in the current release, but is something we are looking at for version 2.5.
... View more
08-26-2011
08:15 AM
|
0
|
0
|
2031
|
|
POST
|
That extent is quite zoomed in, maybe there are no tiles at that zoom level? What happens if you zoom out a few levels once it is "not showing map"?
... View more
08-24-2011
05:40 PM
|
0
|
0
|
706
|
|
POST
|
What projection is your map in? What's the projection of your <basemap> layers?
... View more
08-24-2011
04:37 PM
|
0
|
0
|
706
|
|
POST
|
One difference I do see is that the HTML Popup Type on the other layers on the server are set to None. And on the layer not working is set to AsHTMLText, could that be a problem? No, I wouldn't think so. Is there a way to specify where to make the popup show up in the application in the popup configuration file? No. Is the layer publicly available for us to see? Is it based on an event layer or something else that could make it different from more normal layers? How far off are the popups displaying? Are you using a web mercator basemap and the popups are showing up outside of Africa near 0,0 latlong? Or are they just off "a little"?
... View more
08-24-2011
04:30 PM
|
0
|
0
|
3217
|
|
POST
|
The main issue is that the KML needs to be at a publicly accessible URL. This is because the Flex API (as well as the JavaScript API) use a utility service on arcgis.com to convert the KML for us. Requirements/Limitations: The KMLLayer is used to create a layer based on a publicly accessible KML file http://help.arcgis.com/en/webapi/flex/apiref/com/esri/ags/layers/KMLLayer.html Known issues: If your KML contains areas outside of Web Mercator scope (i.e North pole, South pole) as in some of the NOAA feeds, then it will fail if your Map is in Web Mercator. If your basemap is in geographic, it works fine. This issue will be fixed in the next version. See also http://forums.arcgis.com/threads/36062-Flex-API-2.4-KML-support-added-need-sample-of-how-to-add-kml
... View more
08-24-2011
04:15 PM
|
0
|
0
|
3095
|
|
POST
|
Correct, most people here do not read Chinese very well. As for your question, the documentation is available (in English) at http://help.arcgis.com/en/webapps/flexviewer/help/
... View more
08-23-2011
05:43 PM
|
0
|
0
|
665
|
|
POST
|
@portangeles & @hoomanmoh, While the thread title indicates your question is about the "Viewer", @portangeles error message makes me think you might be trying to create a Flex Mobile application. If so ... The two "mobile" examples require Flex 4.5 SDK. This is part of the "File->New->Flex Mobile Project" that is part of Adobe Flash Builder 4.5.
... View more
08-23-2011
05:39 PM
|
0
|
0
|
2502
|
|
POST
|
If you add those layers as operational layers in the main config.xml file, then exclude the "More..." from the Map Switcher (or just those layers) and use the Layer List widget to turn them on. I think this is close to what you are asking for. http://help.arcgis.com/en/webapps/flexviewer/help/index.html#/Map_switcher_widget/01m300000026000000/ http://help.arcgis.com/en/webapps/flexviewer/help/index.html#/Layer_list_widget/01m300000002000000/
... View more
08-23-2011
05:29 PM
|
0
|
0
|
458
|
|
POST
|
When you are adding features, it's using the DrawTool and when you are editing/deleting it is using the EditTool. The latter probably has what you are looking for. The DrawTool have two events: http://help.arcgis.com/en/webapi/flex/apiref/com/esri/ags/tools/DrawTool.html#eventSummary The EditTool have 20+ events: http://help.arcgis.com/en/webapi/flex/apiref/com/esri/ags/tools/EditTool.html#eventSummary
... View more
08-23-2011
05:18 PM
|
0
|
0
|
480
|
|
POST
|
Most of the API samples use one of the "sampleservers" and sometimes some of these sample servers have temporary problems. Usually if you wait a few hours (or so), it should be fixed.
... View more
08-23-2011
05:08 PM
|
0
|
0
|
344
|
|
POST
|
Assuming you are working with the Flex API, all the layers supports minScale and maxScale properties, so you can just use that for layer that you want to be scaledependent. http://help.arcgis.com/en/webapi/flex/apiref/com/esri/ags/layers/Layer.html
... View more
08-23-2011
05:06 PM
|
0
|
0
|
429
|
| Title | Kudos | Posted |
|---|---|---|
| 3 | 03-11-2026 11:16 AM | |
| 2 | 03-17-2025 08:24 AM | |
| 3 | 03-17-2025 07:27 AM | |
| 4 | 02-26-2025 11:37 AM | |
| 1 | 03-23-2023 04:36 PM |
| Online Status |
Offline
|
| Date Last Visited |
04-14-2026
04:21 PM
|