|
POST
|
John, If you publish the service with the labels on in ArcMap, and you load into the flexviewer as dynamic (like above post), you should see the labels as they appear in ArcMap. It will even honor scale dependant labeling. If you load as tiled, you would have to re-generate all you tiles after you have turned on the labels and re-published the service. R_
... View more
03-21-2013
09:56 AM
|
0
|
0
|
2453
|
|
POST
|
Wouldn't that, by definition, make it a SSV? R_ Sorry, couldn't resist 🙂
... View more
03-21-2013
09:50 AM
|
0
|
0
|
2449
|
|
POST
|
Thanks it basically confirms what I already was afraid of , there is no way to change the map projection once its set. If you load a basemap in one projection then want to change the map projection and load another basemap in a different projection there is just no way. This seems really counter intuitive, coz you need one map per projection of the different basemaps you have to display a single dynamic service on top of different base maps in different projections. Well, I think for the most part, people are either consuming public services, or they have thier own server so are running their basemaps using a single wkid. Most ESRI basemaps are in mercator, and not very detailed. All my data is in State Plane meters so I also have basemaps in State Plane, meters so there is no issue. (well, almost, I do occationally load an ESRI basemap as dynamic so it overlays on StatePlane) Of course, the best practice is to make sure all data loaded is in the same spatial reference and not mix basemaps. If you really want to use ESRI basemap(s) AND your basemaps, you could convert your basemap to mercator and rebuild the tiles, then both will be available in MapSwitcher and should display properly and your dynamic services will overlay as well. (Keep in mind though, if you convert your basemap to mercator and tile it, you will need to match the ESRI tiling scheme for it to work properly.) Other option, load the ESRI basemap first (or set wkid to mercator), then load your basemap as dynamic. Will then both be available in MapSwitcher and will overlay properly. Could do it the other way (load ESRI service as dynamic), but due to size and server load, the ESRI basemaps take some time to load when loading as dynamic and I'd bet yours will load faster. Hope you find this usefull, R_
... View more
03-19-2013
05:32 PM
|
0
|
0
|
2204
|
|
POST
|
Premkrishnan, Since the portal basemaps are tiled, you must either set your wkid in your map tag to the mercator (WKID="102100") OR, make sure it loads that basemap first (which will set the wkid of the map). This would set the wkid of you flexviewer to 102100. Now, as long as the data your service(s) include have the projection defined, you can load them as dynamic, and it will automatically project them to the correct location on the fly. Of course, you will not be able to load "your" tiled service unless you load as dynamic OR, reproject to 102100 and re-build your cache with the new wkid. Hope this helps, R_
... View more
03-19-2013
04:14 PM
|
0
|
0
|
2204
|
|
POST
|
Did you by any chance put it into another folder on the IIS site? Wondering if your path to the popup config file in your config.xml is correct. Can you get to it in the browser? I.e., www,yourserver,com/viewername/popups/PopUp_filename.xml R_
... View more
03-19-2013
01:21 PM
|
0
|
0
|
3440
|
|
POST
|
Robert, I noticed that his entire xml is in the zip file he attached (still has id="148"). R_
... View more
03-19-2013
01:01 PM
|
0
|
0
|
1552
|
|
POST
|
You should be able, in ArcMap to create a 1:many realate between the shapefile and your table. then publish to service and load into flexviewer. should then be able to configure a popup for that layer, set <showrelatedrecords> to true. http://resources.arcgis.com/en/help/flex-viewer/concepts/index.html#/Pop_up_configuration_files/01m30000002q000000/ this should let you click on a feature to get the attribute info in a popup, if there are related fields, it should let you expand to see the related info as well. R_
... View more
03-18-2013
03:18 PM
|
0
|
0
|
1189
|
|
POST
|
the mxml you provided is way different than the 3.1 Geoprocessing widget. have you tried using the existing GeoprocessingWidget for 3.1 and just update the xml to your parameters? R_
... View more
03-18-2013
02:49 PM
|
0
|
0
|
976
|
|
POST
|
I use pretty much entirely dynamic services in my main config, so it is not that, especially since it's loaded in as a type feature (the /12 at the end of URL) in the chartwidget.xml. What is C900 (the value reported in your chart), is that a line "type"? What field is it coming from? Also, take a look at your rest services and make sure you have the correct values for MATERIAL and SHAPE_LEN and make sure you have the case correctly. Don't know what server version you are running, but know there have been some changes. In 10.05 the shape length field is actually Shape_Length. R_
... View more
03-18-2013
11:07 AM
|
0
|
0
|
4480
|
|
POST
|
Might get some ideas here as well: http://www.arcgis.com/home/item.html?id=4a61e3e4b0c94300a3a361855d9a344f it is an autocomplete search box widget. R_
... View more
03-18-2013
09:57 AM
|
0
|
0
|
961
|
|
POST
|
If I use this for my config: <configuration label="Charts (example)">
<highlightcolor>0x336699</highlightcolor>
<layers>
<layer label="Pipe Size" url="http://gis01.wch-rcc.com/ArcGIS/rest/services/rkz/chart/MapServer/0">
<labelfield>MATERIAL</labelfield>
<fields>
<field name="MATERIAL"/>
<field name="Shape_Length"/>
</fields>
<medias>
<media chartfields="Shape_Length"
title="Pipe Type"
type="piechart"/>
</medias>
</layer>
</layers>
</configuration> I will get this if I select a group of pipes: [ATTACH=CONFIG]22699[/ATTACH][ATTACH=CONFIG]22700[/ATTACH] So, if I hover over the results, it reports it as percentage of pipes by material, and also adds the total length. R_
... View more
03-18-2013
08:10 AM
|
0
|
0
|
4480
|
|
POST
|
Thanks Anthony. I am pretty new to this. There doesn't seem to be anywhere in the application builder to do this. Do I just need to add these edits to the LocateWidget.xml. This is my current file. ?xml version="1.0" ?> <configuration> <labels> <addresstitle>Enter the Address eg: 300 E Chapman Ave</addresstitle> </labels> <locator>http://civ-gisapp-vm1:6080/arcgis/rest/services/AddressPointLocator/GeocodeServer</locator> <usesearchextent>false</usesearchextent> <minscore>10</minscore> <zoomscale>10000</zoomscale> </configuration> I don't use app builder, but you should be able to add it in the LocateWidget.xml. R_
... View more
03-14-2013
11:32 AM
|
0
|
0
|
1756
|
|
POST
|
You will need to be running the source code, as that is set in the StreetviewWidget.mxml. R_
... View more
03-14-2013
10:02 AM
|
0
|
0
|
1193
|
|
POST
|
So, what are you getting that isn't what you want? If I use the same config that you have, I get all the pipes, summarized by type, and shows percentage of that type as well as total length for that type pipe. So, what specifically do you want when you say summarized by different types of pipe material? R_
... View more
03-14-2013
08:32 AM
|
0
|
0
|
4480
|
|
POST
|
It is there, it's just extremely flaky. If you keep reloading, you will see it come up about 4 out of 10 times...... Maybe you need to click at just the right time 🙂 sampleserver2 seems to stay up, might try changing it to that. R_
... View more
03-14-2013
07:50 AM
|
0
|
0
|
1888
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-14-2026 04:00 PM | |
| 1 | 09-14-2022 07:53 AM | |
| 1 | 09-14-2022 08:23 AM | |
| 1 | 05-21-2026 08:53 AM | |
| 1 | 05-14-2026 04:28 PM |
| Online Status |
Online
|
| Date Last Visited |
Monday
|