|
POST
|
But I think it's useful to read out the information Hi Tom, I'm curious - what do you use it for? Just to display it to end user (seems a little unnecessary) - or do you need it for something else?
... View more
04-16-2012
02:39 PM
|
0
|
0
|
3352
|
|
POST
|
We have a tiled basemap in wkid 3434 (NAD_1983_StatePlane_Arkansas_South_FIPS_0302_Feet)... Is there a public service that we could test against?
... View more
04-16-2012
01:15 PM
|
0
|
0
|
4582
|
|
POST
|
Is this a bug of a missed property or an undocumented change in the 3.0 api. It's a yet-to-be documented change in the 3.0 API. Thanks for reminding us 🙂 We removed it because you no longer need to set it. Based on the spatial reference, the API will now automatically figure out the units for you.
... View more
04-16-2012
10:21 AM
|
0
|
0
|
3352
|
|
POST
|
Hi, I think already answered your question at http://forums.arcgis.com/threads/54736-WMS-in-Geoserver?p=187980#post187980 where you replied you would try it. You would publish your services using GeoServer or ArcGIS Server, then consume it from the ArcGIS Viewer for Flex. If you're using GeoServer, you will consume that as WMS - which is supported by the ArcGIS Viewer for Flex - see doc for <layer> tag at http://resourcesbeta.arcgis.com/en/help/flex-viewer/concepts/index.html#/Layer_tag/01m30000000p000000/. Note that I don't think there is any version "1.5", the latest release is "2.5" and there is also a prerelease version for 3.0 available.
... View more
04-16-2012
08:14 AM
|
0
|
0
|
780
|
|
POST
|
agslib- 3.0b1-2011-12-16.swc ... flexviewer- 3.0Prerelease-src That's the "3.0 beta 1" SWC. Try with the "3.0 Prerelease" SWC instead: http://links.esri.com/flex-api/latest-download
... View more
04-09-2012
01:26 PM
|
0
|
0
|
2908
|
|
POST
|
i want to know is arcGIS viewer for Flex supported WMS in geoserver? WMS is supported, and other people have been able to use it with geoserver so it's possible. Sometimes it can be a little tricky to setup. There can be cross domain hurdles, projection hurdles, specifying the names of layers to display hurdles, but if you share the URL to your geoserver there are people here who can probably help.
... View more
04-07-2012
10:07 AM
|
0
|
0
|
780
|
|
POST
|
The Flex API supports KML using the KMLLayer since version 2.4. You can add as many KMLLayer(s) as you want. http://help.arcgis.com/en/webapi/flex/apiref/com/esri/ags/layers/KMLLayer.html
... View more
04-06-2012
05:23 PM
|
0
|
0
|
645
|
|
POST
|
There are two "mobile" samples that are part of the API Library download: http://resourcesbeta.arcgis.com/en/help/flex-api/samples/index.html#/Mobile_Samples_Overview/01nq0000006p000000/ Note that you will require at least Flash Builder 4.5.1 and Flex 4.5.1 SDK. See also our Concept page "Mobile applications with Flex" Here's another good Adobe article (with video): http://blogs.adobe.com/flashplatform/2011/06/build-mobile-apps-for-android-devices-blackberry-playbook-iphone-and-ipad-today.html?PID=4166445 Developing for iOS is more complicated to setup than for Android, but there's plenty of resources available, for example: http://help.adobe.com/en_US/air/build/WSfffb011ac560372f3cb56e2a12cc36970aa-8000.html http://devgirl.org/2011/06/20/flexair-for-ios-development-process-explained
... View more
04-06-2012
05:06 PM
|
0
|
0
|
702
|
|
POST
|
I am having trouble compiling with 4.5 - lots of errors[ATTACH=CONFIG]13321[/ATTACH] 3.0 Prerelease only works with 4.5 and above. I think in your case, maybe you have not added the API Library (the SWC file) yet? You need to download it separately - http://links.esri.com/flex-api/latest-download. See http://resourcesbeta.arcgis.com/en/help/flex-api/concepts/index.html#/Getting_started/017p0000001q000000/ for how to include it in your project.
... View more
04-06-2012
04:45 PM
|
0
|
0
|
2908
|
|
POST
|
Mighty kipper, As mentioned in your other post, you can't directly add a shapefile to the Flex Viewer, but you can either create a map service with it, OR add it to ArcGIS.com Viewer and save it as a web map Either the map service or the web map could then be used in the ArcGIS Viewer for Flex.
... View more
04-06-2012
03:09 PM
|
0
|
0
|
732
|
|
POST
|
Does anybody know how to get the flare symbol to show the original symbols of the clustered graphics? Have you tried with the latest version (3.0 Prerelease)? The clustering was upgraded for the 3.0 prerelease and even thought it's not mentioned on http://resourcesbeta.arcgis.com/en/help/flex-api/concepts/index.html#/What_s_new_in_ArcGIS_API_3_0_for_Flex/017p0000000w000000/ I think it now works as what you are looking for.
... View more
04-06-2012
03:05 PM
|
0
|
0
|
789
|
|
POST
|
In your main configuration file you can set up the LODs ("levels of details") that you want to use. In this case, you could first specify the ones that apply to the tiled service you are using, then add a few more zoomed in ones. See <lods> in the Flex Viewer documentation under Tag Reference -> Main configuration file: http://resourcesbeta.arcgis.com/en/help/flex-viewer/concepts/index.html#/Main_configuration_file/01m300000018000000/ FYI - for people also working with the Flex API, this is similar in principal to how it works in the API, see for example the "Add LODs for extra zooming" sample: http://resourcesbeta.arcgis.com/en/help/flex-api/samples/index.html#/Add_LODs_for_extra_zooming/01nq0000002m000000/
... View more
04-06-2012
02:43 PM
|
0
|
0
|
679
|
|
POST
|
It says for FV 3.0 "Support secure ArcGIS Server where users will automatically be prompted to log in as needed." Can someone direct me on the How to's to implement this? If you are using the Viewer, there's nothing you have to do (except for using a secure Map Service). If you are using the API, you need to enable the IdentityManager in your application. IdentityManager.instance.enabled = true; In the Flex Viewer, this is already done (in the main index.mxml). If you are writing your own application, you have to add it yourself, see for example the "Edit secure service" sample: http://resourcesbeta.arcgis.com/en/help/flex-api/samples/index.html#/Edit_secure_service/01nq00000074000000/ API Reference: http://resourcesbeta.arcgis.com/en/help/flex-api/apiref/com/esri/ags/components/IdentityManager.html
... View more
04-05-2012
04:04 PM
|
0
|
0
|
1071
|
|
POST
|
OK, another question... In general, it is usually better to start a new forum thread if you have another question 🙂 Having separate threads for separate questions makes it easier for people to search and find answers to questions that might already have been answered. It also gives people a chance to get "credit" for answering each question..
... View more
04-05-2012
01:38 PM
|
0
|
0
|
1483
|
|
POST
|
is there a way to contact the person who created the Closest Facility widget? For any code gallery item, you can always use the "Comments" section of that item. Often asking the question on the forum can be better as more people might be able to help (or have the same question). For the Closest Facility Widget, there was also a blog entry - http://blogs.esri.com/esri/apl/2010/11/08/a-pair-of-new-flexviewer-2-1-widgets/ - where you could also submit a question.
... View more
04-05-2012
01:35 PM
|
0
|
0
|
1104
|
| 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
|