|
POST
|
I advise you don't use adf because it's deprecated see http://blogs.esri.com/esri/arcgis/2011/09/30/update-to-arcgis-10-and-10-1-deprecation-plan Thank you Domenico for the advice and the link. Best Jamal
... View more
01-02-2013
10:12 AM
|
0
|
0
|
898
|
|
POST
|
Try downloading a program called Notepad++, and use that program to edit your config.xml, as well as you widget .xml's. Thank you GIS Dev for the answerer I�??ve commented the: <geometryservice url="http://tasks.arcgisonline.com/ArcGIS/rest/services/Geometry/GeometryServer" useproxy="false"/> [ATTACH=CONFIG]20369[/ATTACH], [ATTACH=CONFIG]20370[/ATTACH] Nevertheless, the basemap is still there!
... View more
01-02-2013
10:10 AM
|
0
|
0
|
8219
|
|
POST
|
I think you can copy your older application into the Application builder's default flexviewers install directory and then it should appear in the list of applications with an "upgrade" label beside it. im not at my work computer to give the exact details but give that a try. Thank you Gerald for the answer. The issue is that the applications stored in the folder C:\inetpub\wwwroot\flexviewers are not shown in the Flex. Then how to import them to proceed working? Please, have a look in the screenshot below [ATTACH=CONFIG]20358[/ATTACH]
... View more
01-01-2013
12:30 PM
|
0
|
0
|
3114
|
|
POST
|
Downloading ???layers??? from the Web Application (Flex), I???m not sure if there might be a development that allows ???permitted??? users to download layers from the web application (built on Flex) and save them in their hard disks. Thank you Best Jamal
... View more
01-01-2013
08:12 AM
|
0
|
6
|
2005
|
|
POST
|
Jamal, Once the replica is created, it doesn't matter which one you specify as GDB1 or GDB2. The important part is what you specify as the sync direction which will determine where the data changes are going. In your case, you edited E, and wanted to sync those changes to S. You filled the Sync tool out just fine - the sync direction was set to "Both_Directions" which means that any changes in E will get synced to S, and also any changes in S will get synced to E. However - you aren't seeing the updates you expect. Wondering if your edits are "outside" your replica extent. This could mean the spatial extent, if you had any filters on the layers. Or perhaps you just need to call refresh on the version in your map doc (Add versioning toolbar, and use the Refresh Version on the workspace that you expect to see the changes in). -Heather Thank you Heather for the very integrated and useful answer. It did work perfectly. Your elaboration made my life easier. The issue was with the �??refresh�?� button. [ATTACH=CONFIG]20349[/ATTACH], [ATTACH=CONFIG]20350[/ATTACH] As the Synchronization is done at the level of databases (here between E and S), then how the Parent/child relation is involved? In my understanding, the Parent/child is managed at the level of the database itself but not between different databases. I referred to the help but got more confused. [ATTACH=CONFIG]20351[/ATTACH] So, in this case, do we pay attention regarding the structure of Parent/child relation in S and E databases? How is this related to the Synchronization? what about its effect? [ATTACH=CONFIG]20352[/ATTACH], [ATTACH=CONFIG]20353[/ATTACH] Best Jamal
... View more
12-31-2012
07:56 PM
|
0
|
0
|
3369
|
|
POST
|
I can assure you no "development" is being done using the Flex Application Builder. You should look into using the Source Code instead of the Application Builder. Many thanks GIS Dev. For me the �??ArcGIS Viewer for Flex�?� is a good point to start building a simple web application. I thought that there might be a way to �??save/export�?� it on the hard drive and then to �??open/import�?� it. Best Jamal
... View more
12-31-2012
12:12 PM
|
0
|
0
|
3114
|
|
POST
|
Jamal, Are you limited to working with the application builder or can you access the source code using flash builder. The application builder will allow you to do a limited amount of configuration but for what you want you may need to delve into the source code. A trial version of flash builder can be downloaded from here: https://www.adobe.com/cfusion/tdrc/index.cfm?product=flash_builder To work with this you will also need the source code for the viewer: https://github.com/Esri/arcgis-viewer-flex/tags I have also provided a few links that may help you with each of your wish list, some can be done using widgets developed by others some will require you to play with the source code: 1. The scale text (example: 1:150000) http://forums.arcgis.com/threads/24407-Show-scale-with-coordinates?highlight=scale+text 2. Identify tool (like the one on the ArcGIS desktop) http://www.arcgis.com/home/item.html?id=39cf66d58c234279ba728c50461a1a89 3. â??go to xyâ?� (like the one on the ArcGIS desktop) http://www.arcgis.com/home/item.html?id=edd4a2b7c722493a8b08f53eaa131e1e or the locate widget has similar capability 4. The â??findâ?� tool (done) http://www.arcgis.com/home/item.html?id=5d4995ccdb99429185dfd8d8fb2a513e 5. Query tool (to choose from drop-down list) Same as above: http://www.arcgis.com/home/item.html?id=5d4995ccdb99429185dfd8d8fb2a513e 6. â??Findâ?� and â??drop-down listâ?� at the same time: to have the chance to see the available values WHILE typing (the most powerful tools) http://www.arcgis.com/home/item.html?id=4a61e3e4b0c94300a3a361855d9a344f 7. How to allow moving the layers in the table of contents up and own? The layer list widget already allows you to do this to services, Robert also has an advanced one: http://www.arcgis.com/home/item.html?id=e2cb71d5c04d40d19e9f945ae0db7ce8 If you want to change the layer order in a map service you need to use dynamic layers: http://resources.arcgis.com/en/help/flex-api/samples/index.html#//01nq0000006w000000 8. Size of icons is quite small! How can they be enlarged? If you mean the icons in the header control have a look at this thread: http://forums.arcgis.com/threads/34685-Modify-Icon-SIZE-of-Widget-that-is-diaplayed-in-the-Header-Controller?highlight=header+widget+icons Regards Anthony Many thanks Anthony for the effort in providing links to my challenges. Iâ??ll try them and see if they work with me Best Jamal
... View more
12-31-2012
12:06 PM
|
0
|
0
|
1128
|
|
POST
|
Daniel, Try this in the CoordinateWidget.mxml private function map_mouseMoveHandler(event:MouseEvent):void
{
const mapPoint:MapPoint = map.toMapFromStage(event.stageX, event.stageY);
coords.text = m_func(mapPoint) + " Scale 1:" + map.scale.toString();
} Hi Robert, Could you please indicate where should I stick this code? I have no idea! [ATTACH=CONFIG]20348[/ATTACH] Thanks Jamal
... View more
12-31-2012
11:56 AM
|
0
|
0
|
3146
|
|
POST
|
One other remark concerning your issue: It is best practice to use assign geodatabase Feature Class privileges to database "Roles" instead of to individual database "Users". I strongly advice you to do so, as it greatly simplifies privilege maintenance. If you assign your database users to individual groups that need specific privilege rights on certain Feature Classes, and than create a Role for that group of users and add all database users to that group using your database management system (e.g. SQL Server), you subsequently only need to assign all the needed geodatabase privileges to the single Role instead of potentially dozens or hundreds of users. And if you wanted to know which users have what rights on a Feature Class, you simply first look at what "Roles" have what rights, and than use the database management console to look up which "Users" belong to that specific "Role". Generally, you would also distinguish Roles not only based on which Feature Classes these users need to see / be able to use, but also based on whether or not they need to edit data. So you might have a Role "Ramallah Editor" and "Ramallah Viewer", or a more specific Role "Ramallah Utilities Editor" and "Ramallah Utilities Viewer". Thank you Marco for the very powerful �??road map�?� you have supplied to better manage my database. Your help is highly appreciated. Best Jamal
... View more
12-31-2012
11:44 AM
|
0
|
0
|
3357
|
|
POST
|
I don't use the Builder but I added a blank basemap directly to the config.xml to make this happen. All you have to do is add: <layer label="Blank" type="dynamic" visible="false" url="" /> between the <basemaps> tags. For 3.x, you can add a icon property pointing to a white/blank png file. <layer label="Blank" type="dynamic" visible="false" icon="assets/images/basemap_blank.png" url="" /> Many thanks Anthony and Trevor for the feedback. Sounds that unchecking the option �??add arcgis online basemaps�?� is sufficient to turn off the basemap! I�??m not sure if this is permanent or just temporary! [ATTACH=CONFIG]20345[/ATTACH] I have little experience to play with the code, Trevor. By the way, my Flex is 3.1. [ATTACH=CONFIG]20346[/ATTACH] Best Jamal
... View more
12-31-2012
11:09 AM
|
0
|
0
|
8219
|
|
POST
|
Agree, it can be convenient in some cases, although I remember seeing some discussion about IT security / privacy related issues with such an exposure of database user names from within the ArcGIS interface. After all, they are part of the database login. Many thanks Marco for the elaboration Best Jamal
... View more
12-31-2012
10:38 AM
|
0
|
0
|
1296
|
|
POST
|
Who to import previously created applications to "Flex" to proceed developing them? I???m wondering if there is a way to import the previously created applications from their folder (C:\inetpub\wwwroot) to the ???ArcGIS Viewer for Flex???? [ATTACH=CONFIG]20344[/ATTACH] Do we need to start from scratch if there is no tool to import our application to proceed developing them? Thank you very much, Best Jamal
... View more
12-31-2012
09:58 AM
|
0
|
6
|
3381
|
|
POST
|
How to turn off the �??basemap�?� in the �??ArcGIS Viewer for Flex�?�? I unchecked the option �??add arcgis online basemaps�?�, [ATTACH=CONFIG]20338[/ATTACH] Nevertheless, when the link is launched, the basemap is there and there is no option to turn it off [ATTACH=CONFIG]20339[/ATTACH] what might be the solution? Thank you Best Jamal
... View more
12-30-2012
08:04 PM
|
0
|
8
|
11366
|
|
POST
|
Jamal, As this post pointed out Robert has extended the search tool considerably including the option to build drop down lists for the users to choose from. This lists can also be created dynamically from domains in your database if you so wish Regards Anthony Absolutely, you are right The link provided by GIS Dev is very powerful. My issue is to be able myself to develop very simple functions in the �??ArcGIS Viewer for Flex�?� and then to be able to integrate other available functionalities built by professional users to my web application Then my issue is just to start developing some of the very basic buttons for any map-web application 1. The scale text (example: 1:150000) 2. Identify tool (like the one on the ArcGIS desktop) 3. �??go to xy�?� (like the one on the ArcGIS desktop) 4. The �??find�?� tool (done) 5. Query tool (to choose from drop-down list) 6. �??Find�?� and �??drop-down list�?� at the same time: to have the chance to see the available values WHILE typing (the most powerful tools) 7. How to allow moving the layers in the table of contents up and own? 8. Size of icons is quite small! How can they be enlarged? Best Jamal
... View more
12-30-2012
07:45 PM
|
0
|
0
|
6659
|
|
POST
|
The name of the table is directly derived from the layer name, so if you change the layer name manually to something appropriate upon adding it to the ArcMap TOC (Table Of Contents), you should see different names for tables. Many thanks Macro, I thought that there might be an indicator to show the name of the version and/or user in the table (to know where we are!) Best Jamal
... View more
12-30-2012
12:06 PM
|
0
|
0
|
1296
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 06-16-2026 08:17 AM | |
| 1 | 09-30-2022 10:43 PM | |
| 2 | 05-05-2025 10:33 AM | |
| 1 | 05-08-2025 09:49 PM | |
| 1 | 05-06-2025 11:10 PM |
| Online Status |
Offline
|
| Date Last Visited |
4 weeks ago
|