|
POST
|
Is this now possible with the 3.5 API...? No, but it (the ability to customize map tips when using the Draw tool) will be part of our upcoming 3.6 release in December.
... View more
11-26-2013
01:46 PM
|
0
|
0
|
428
|
|
POST
|
Here is some documentation: https://developers.arcgis.com/en/flex/guide/routing-tasks.htm https://developers.arcgis.com/en/flex/api-reference/index.html?com/esri/ags/tasks/RouteTask.html&com/esri/ags/tasks/class-list.html Here are samples which routes between multiple points. If you change the RouteParameters, you can make it optimize the route: https://developers.arcgis.com/en/flex/sample-code/basic-routing.htm https://developers.arcgis.com/en/flex/sample-code/routing-around-barriers.htm
... View more
11-26-2013
01:34 PM
|
0
|
0
|
1744
|
|
POST
|
This was fixed in version 3.5 of the ArcGIS API for Flex that was released in September.
... View more
11-26-2013
01:06 PM
|
0
|
0
|
967
|
|
POST
|
Or is it something the flex team are looking at doing (Bjorn)? No, we don't have any plans to support widget groups in the appbuilder. As you know, it's possible with the configuration files already, and it would be a nice feature to add. The UX for it (in appbuilder) can get a bit tricky though.
... View more
11-26-2013
10:05 AM
|
0
|
0
|
665
|
|
POST
|
As you've noticed, the Javascript API does not have a direct CompositeSymbol equivalent. Derek wrote up some alternative at http://forums.arcgis.com/threads/51513-Custom-marker-symbols?p=176146&viewfull=1#post176146: * Use two points, one with the PictureMarkerSymbol and the other with the TextSymbol. If that's hard to do while moving the icon, you could turn off the TextSymbol while moving. * Use something like Sathya's infoTip sample
... View more
11-21-2013
04:55 PM
|
0
|
0
|
1221
|
|
POST
|
Correct, to store the data, you will need to have an online subscription. "For Geocoding, including batch geocoding, where results are stored: World Geocoding (an ArcGIS Online subscription or trial is required)" http://blogs.esri.com/esri/arcgis/2013/04/08/legacy-geocoding-and-routing-services-at-httptasks-arcgisonline-com-will-be-retired-on-december-31-2013/ In short, you will be sending in credentials/authentication along with the request. This is what will allow for tracking/billing. https://developers.arcgis.com/en/features/geocoding/ You don't have to host this application on ArcGIS.com. You can keeping running it from your local machine. There is more information on authentication at https://developers.arcgis.com/en/authentication/. It depends somewhat on your current workflow/technology.
... View more
11-21-2013
12:51 PM
|
0
|
0
|
2352
|
|
POST
|
... can anyone confirm that using a VETiledLayer would fall under the usage guidelines for Bing Maps as described here under "Map Tile Usage": http://msdn.microsoft.com/en-us/library/ff859477.aspx VETiledLayer documentation: https://developers.arcgis.com/en/javascript/jsapi/vetiledlayer-amd.html It falls under the "REST Services" section on that page: "Any time an Imagery API URL request is made to get ... to get imagery metadata that contains a map tile URI, one transaction is counted." "Imagery" refers to streets/imagery/hybrid (not just "imagery"). "metadata" refers to the initial metadata request from VETiledLayer (so you are not getting charged more as you zoom/pan more).
... View more
11-21-2013
12:28 PM
|
0
|
0
|
781
|
|
POST
|
I'm new to ArcGIS server. Since ArcGIS server 10.0 was published 2 years ago, while the Javascript API 3.7 is released just now. I'm not sure if they are compatible with each other. In general, any version of the Javascript API will work with any ArcGIS Server 9.3 or later. Though certain functionality requires a newer server version, most things will work just fine.
... View more
11-21-2013
10:51 AM
|
0
|
0
|
1655
|
|
POST
|
1. Can I use the World geocoding service without an online account? The link you posted gives me results, implying that it would not be required. Yes, you can use it without an online account. "For GeoSearch, where results are not stored: World Geocoding (no credentials required)" http://blogs.esri.com/esri/arcgis/2013/04/08/legacy-geocoding-and-routing-services-at-httptasks-arcgisonline-com-will-be-retired-on-december-31-2013/ 3. If an online account is required, then ... It's not required.
... View more
11-21-2013
10:40 AM
|
0
|
0
|
2352
|
|
POST
|
What else I need to check? or Is there any way I can troublshoooooting this? What version is your server? "The GenerateRendererTask is available for map service or tables that support the generateDataClasses operation (version 10.1 or greater)." https://developers.arcgis.com/en/javascript/jsapi/generaterenderertask.html
... View more
11-20-2013
05:15 PM
|
0
|
0
|
911
|
|
POST
|
I think you're right, but I'm curious if you just want to hide the "non-metric" ones? (which I think is the most common scenario). Or do you want even more fine-grained control?
... View more
11-20-2013
01:06 PM
|
0
|
0
|
906
|
|
POST
|
It's just that specific service that is being replaced. Not the general capabilities or methods. The new service is the World Geocoder service on http://geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer. You can read more at http://resources.arcgis.com/en/help/arcgis-rest-api/#/Overview_of_the_World_Geocoding_Service/02r300000009000000/ For example, http://geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer/findAddressCandidates?Address=380+New+York+Street&City=Redlands&State=CA&Zip=92373&f=json&pretty=true The longer answer is in this blog article from April this year - http://blogs.esri.com/esri/arcgis/2013/04/08/legacy-geocoding-and-routing-services-at-httptasks-arcgisonline-com-will-be-retired-on-december-31-2013/
... View more
11-20-2013
12:39 PM
|
0
|
0
|
2352
|
|
POST
|
If you want to upgrade 2.x code to 3.x, the best starting point (in addition to trying and then interpret error messages), is probably https://developers.arcgis.com/en/flex/guide/migrating-to-3-x.htm From that page and related to your error: On the GeometryService, the input parameter for the project() method is now projectParameters instead of geometries. This also allows for specifying datum transformations (requires ArcGIS 10.1 for Server).
... View more
11-12-2013
03:26 PM
|
0
|
0
|
1330
|
|
POST
|
This doesn't answer your question, but ... if possible, you might want to use a scale bar instead of a 1:scale. This way it would be less confusing and would be correct on both your computer screen, a projected big screen and printed out.
... View more
11-12-2013
02:27 PM
|
0
|
0
|
1434
|
|
POST
|
I'm trying run the widgets in 3.5 but i am running into an error on geometryService.project([p2 as Geometry], map.spatialReference); Implicit coercion of a value of type com.esri.ags:SpatialReference to an unrelated type com.esri.ags.tasks.supportClasses:ProjectParameters. GoogleRoutingWidget.mxml Sounds like maybe you are using a widget compiled for 2.x with 3.x. Where did you download this widget (the item mentioned above does not seem accessible any more)?
... View more
11-11-2013
07:40 AM
|
0
|
0
|
1330
|
| 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
|