|
POST
|
I'll do a little research but before I get into that, which versions of the JS API and ArcGIS Server are you using?
... View more
06-18-2012
01:11 PM
|
0
|
0
|
2369
|
|
POST
|
Add a slash to the end of the location for help_panel? For your help_panel package, what are the URLs you're seeing generated for your module(s) from your app?
... View more
06-17-2012
04:59 PM
|
0
|
0
|
1279
|
|
POST
|
Hi funpig, I wrote and maintain the GPX template. Regarding #1, that's a good enhancement. I'll look at adding that. For #2, you could download and tweak the app to remove that but I understand if that's not practical. I'll look at removing the "No time info in GPX data." text from a future release.
... View more
06-15-2012
09:35 AM
|
0
|
0
|
692
|
|
POST
|
My answer in a previous thread might be applicable: http://forums.arcgis.com/threads/58481-Avoid-requery-on-feature-layer?p=201690&viewfull=1#post201690
... View more
06-13-2012
02:55 PM
|
0
|
0
|
1150
|
|
POST
|
Your link is to a feature service. You can use it in your app via esri.layers.FeatureLayer.
... View more
06-08-2012
12:37 PM
|
0
|
0
|
3026
|
|
POST
|
If you're using a tiled service, you can get the map's level, add or subtract one from it depending on which button is clicked and pass that as the second argument to centerAndZoom. If you're not using a tiled service, centerAndZoom probably isn't what you want. Rather, try building a new extent and using map.setExtent. More info about using extents: http://help.arcgis.com/en/webapi/javascript/arcgis/help/jshelp/intro_extents.htm
... View more
06-08-2012
08:24 AM
|
0
|
0
|
2197
|
|
POST
|
Instead of continuously comparing properties of extents, why not enable your "return to initial extent" button when onExtentChange initially fires? Since onExtentChange fires when the map's extent changes, by definition, you know that the new extent is not going to be equal to the map's initial extent. I would then disconnect your listener for onExtentChange and only re-enable it when your "return to initial extent" button is clicked. I would also remove or disable your "return to initial extent" button after it's clicked as well.
... View more
06-07-2012
07:07 AM
|
0
|
0
|
1357
|
|
POST
|
The KML Layer with Buffer shows how to buffer a geometry and calculate the population within the buffer using a geoprocessing service.
... View more
06-02-2012
02:19 PM
|
0
|
0
|
557
|
|
POST
|
Cool. Thank you. Your link is not public yet 😉 My mistake, I meant to link to the currently public JS API samples page: http://help.arcgis.com/en/webapi/javascript/arcgis/help/jssamples_start.htm. 3 won't be out the same day as 10.1, right, it will be a few weeks later? I honestly don't the know official date for 10.1. We should be ready to announce 3.0 officially in the next couple of weeks.
... View more
06-02-2012
01:33 PM
|
0
|
0
|
1808
|
|
POST
|
There are quite a few things, here's a high level overview: �??finalized support for new 10.1 features (refer to the "ArcGIS Server 10.1" book of samples here: http://helpdev.arcgis.com/en/webapi/javascript/arcgis/help/jssamples_start.htm) �??enhancements to esri.request to automatically detect and use CORS �??uses Dojo 1.7 (we're bundling the new dgrid with our API build too) �??new Gauge dijit �??new samples showing more mobile examples, point clustering via a custom layer, Gauge dijit usage, using a map service returned by a GP task and more samples showing ArcGIS Portal API usage �??lots of bug fixes/enhancements, will be detailed in our "What's New in 3.0" doc I'm also trying to finish up a tutorial on writing classes with JS and writing dijits for use with the JS API that we can publish with the release of 3.0.
... View more
06-01-2012
01:29 PM
|
0
|
0
|
1808
|
|
POST
|
Hi Ted, We don't have a beta program. We occasionally announce a availability of a public RC but we don't have a formal or standard process for this. 3.0 is coming soon. Post-3.0, we plan to continue doing incremental releases every couple of months (the cliched "6-8 weeks" if you will).
... View more
06-01-2012
12:54 PM
|
0
|
0
|
1808
|
|
POST
|
I'm not familiar with ext.net and can't provide any additional guidance. Please try the suggestions I posted in my previous post in this thread.
... View more
05-29-2012
02:58 PM
|
0
|
0
|
1233
|
|
POST
|
If you want to convert coordinates from web mercator to wgs84, use esri.geometry.webMercatorToGeographic. The coordinate conversion is done client side and does not require anything from a server.
... View more
05-29-2012
08:39 AM
|
0
|
0
|
1871
|
|
POST
|
Can you post what you did to fix your issue? Might be helpful to anyone who finds this thread in the future.
... View more
05-25-2012
12:13 PM
|
0
|
0
|
818
|
|
POST
|
I looked into this a bit more and using setRenderer() doesn't cause the features to re-draw. Calling refresh() does the job, but as you noted it re-qureies the service. In cases where you're using 10.0 or 10.1, this shouldn't be a concern because the server should return a 304 in 100 or so milliseconds. If your server isn't quickly returning 304s, you could use centerAt and pass in the map's current center so that the map doesn't actually move but it does re-draw the features with the new renderer:
map.centerAt(map.extent.getCenter());
Working example using this workaround: http://jsfiddle.net/FePUD/
... View more
05-25-2012
11:42 AM
|
0
|
0
|
1836
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 01-23-2012 07:54 AM | |
| 1 | 05-28-2010 08:31 AM | |
| 1 | 11-12-2012 08:12 AM | |
| 3 | 02-23-2012 10:57 AM | |
| 1 | 06-27-2011 08:51 AM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:23 AM
|