|
POST
|
Douglas, You can also register an existing web application if you have any in your organization, and use the app Id from that. regards Anthony
... View more
12-22-2014
11:08 AM
|
0
|
0
|
3493
|
|
POST
|
WAB is now available: Web AppBuilder for ArcGIS (Developer Edition) | ArcGIS for Developers Regards Anthony
... View more
12-18-2014
12:40 PM
|
1
|
0
|
2672
|
|
POST
|
Mike, In Arcmap with your layer added. Click the Editor menu on the Editor toolbar and click Start Editing. Open the Create Features window by clicking Create Features on the Editor toolbar. In the Create Features window, click your manhole point feature template. This sets up the editing environment so that you will be creating new point features in the manhole layer. Right click on the map and select absolute x y (I think F6 also takes you here). Type in your coords to create a new feature Regards Anthony
... View more
12-18-2014
08:56 AM
|
2
|
1
|
879
|
|
POST
|
Adam, Check out this thread: Is it possible to change the Max Record Count on an AGOL hosted Feature service?
... View more
12-17-2014
01:41 PM
|
1
|
1
|
2273
|
|
POST
|
Adam, I think hosted feature services are set to a limit of 1000 features and you do not have the control over the figure like you do with your own server. The only reference I can find to this is on this blog: Quick Tips: Consuming Feature Services with Geoprocessing | ArcGIS Blog Regards Anthony
... View more
12-17-2014
01:30 PM
|
0
|
2
|
2273
|
|
POST
|
Amy, it should be done automatically, does your csv file have the required field headings as per the guide here: https://raw.githubusercontent.com/Esri/shortlist-storytelling-template-js/master/Readme.pdf Regards Anthony
... View more
12-17-2014
11:31 AM
|
0
|
7
|
2495
|
|
POST
|
Herbert, What browser are you using? Since the latest upgrade to AGO I have found that I cannot perform various functions (such as viewing my organization or the map tab) in IE8. The screen just hangs then eventually I get a long script running error but the page never loads.
... View more
12-17-2014
07:59 AM
|
0
|
1
|
2763
|
|
POST
|
When you say you have a layer from a mapserver is this an ArcGIS server? and have you configured your flex viewer to look at the REST endpoint, it will be something like this in your main config: <layer label="Demographics" type="dynamic" visible="false" alpha="0.5" url="http://server.arcgisonline.com/ArcGIS/rest/services/Demographics/USA_Median_Household_Income/MapServer"> If so you can configure your viewer to make use of pop ups, see the help here: ArcGIS Viewer for Flex If you are not using the REST endpoint and your layer is coming from a WMS there is currently no capability in the flex viewer to see the attributes (getFeatureInfo has not been implemented)
... View more
12-17-2014
07:53 AM
|
0
|
0
|
1397
|
|
POST
|
Nasif, What do you mean by using SQL server in Flex, are you talking about an enterprise geodatabase held in SQL, being served through ArcGIS Server? Please expand on your question Regards Anthony
... View more
12-17-2014
05:58 AM
|
0
|
2
|
1397
|
|
POST
|
Adam, You are probably hitting the limit of features returned from your server. You can up the number in your service properties, but it is a trade of with the number of features returned and performance. From the help: Maximum number of records returned by the server: Clients, such as the ArcGIS web APIs, can perform query operations to return specific information, or records, from a map service. This property specifies how many records can be returned by the server to a client for any given query operation. Specifying a large number of records to be returned by the server can slow the performance of client applications consuming your map service, such as web browsers, and your GIS server. Regards Anthony
... View more
12-16-2014
11:16 PM
|
2
|
4
|
2273
|
|
POST
|
Jerome, What projection do you have set on your county map? Is is in state plane? If so your coordinates are in decimal degrees and the linear units for the state plane are US Survey Feet. What you will need to do is open up a blank MXD and set the data frame projection to geographic, world, WGS 84. Then display your xy data here and export the XY event layer to a shapefile. Once you have done this you can then use the Project tool to project the shapefile you just made to the correct projection. This should properly project your coordinates. The the problem with not having any attributes in the table maybe an illegal character in one of your field headings. Make sure your headings don't have special characters or spaces. The one that often catches you out is - as this does not throw an error you just get an empty table. regards Anthony
... View more
12-13-2014
01:29 AM
|
2
|
0
|
1042
|
|
POST
|
Wu, I am not sure what you are trying to achieve by setting the width and height in the init() function. Out of the box widgets can be resized in the main config file, by adding the width and height attributes to the widget tag: ArcGIS Viewer for Flex e.g: <widget label="GeoRSS" url="widgets/GeoRSS/GeoRSSWidget.swf" config="widgets/GeoRSS/GeoRSSWidget.xml" width="350" height="300"/> If you are creating your own widget then you can add the width and height attributes to the widgetTemplate tag: <viewer:WidgetTemplate id="wTemplate" width="350" height="300" .....> Regards Anthony
... View more
12-10-2014
12:10 AM
|
0
|
3
|
1585
|
|
POST
|
Wu, There is no reference to wCanvas in the later versions of the viewer, you should be able to change the size of the widget using the properties of wTemplate, add the following function: public function setResize(nHeight:Number, nWidth:Number):void { wTemplate.height = nHeight; wTemplate.width = nWidth; } then call the function from what ever action you want: setResize(900,900) Regards Anthony
... View more
12-09-2014
01:06 AM
|
0
|
5
|
1585
|
|
POST
|
Li, This is what I use in the viewer, not sure if it is relying on anything else within the viewer code but it may give you some pointers, Regards Anthony
... View more
12-08-2014
05:13 AM
|
0
|
1
|
1074
|
|
POST
|
Mohammed, To have every checkbox un-ticked you have to do a combination of two things. First off all ensure all your layers are turned off (un-checked) in your mxd when you publish your service. Then in the main config file for your flex viewer when you add the layer, make sure you have visible set to false: <layer label="Streets" type="tiled" visible="false" url="http://server.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer"/> Regards Anthony
... View more
12-08-2014
03:55 AM
|
1
|
1
|
1013
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 11-01-2016 01:57 PM | |
| 1 | 02-04-2013 01:05 AM | |
| 1 | 04-11-2013 09:53 PM | |
| 1 | 04-03-2013 09:42 AM | |
| 1 | 07-25-2014 10:58 AM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:22 AM
|