|
POST
|
What does that mean? Can you post a more complete code sample, which allows the problem to be reproduced - perhaps by modifying one of the sample ESRI scripts, or posting a link to your application online
... View more
03-15-2012
06:56 PM
|
0
|
0
|
3427
|
|
POST
|
It is a great widget +1 it's an excellent widget which should be part of the API
... View more
03-15-2012
02:55 PM
|
0
|
0
|
2582
|
|
POST
|
It is a corrupt mxd that the msd was based on For what it's worth, I've noticed an intermittent problem with that happening, too. I believe it's possibly something to do with exporting from an MXD to an MSD which already exists. I've found the problem doesn't seem to occur as often if I delete the MSD first, then export the MXD - but I haven't been able to reproduce it reliably. Cheers, Steve
... View more
03-13-2012
10:12 PM
|
0
|
0
|
921
|
|
POST
|
when I try a 20 mile radius I get an instant error 500 response Can you provide the code that you're running? What is the URL which is being called? For example, a query running on a sample ArcGIS service uses: http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Demographics/ESRI_Census_USA/MapServer/5/query?text=&geometry=&geometryType=esriGeometryPoint&inSR=&spatialRel=esriSpatialRelIntersects&relationParam=&objectIds=&where=1%3D1&time=&returnCountOnly=false&returnIdsOnly=false&returnGeometry=false&maxAllowableOffset=&outSR=&outFields=&f=html Steve
... View more
03-13-2012
07:47 PM
|
0
|
0
|
802
|
|
POST
|
Do you have a link to an online version we could play with? Failing that can you add some screenshots? It's always good to get inspiration on cool map interfaces!
... View more
03-13-2012
07:42 PM
|
0
|
0
|
921
|
|
POST
|
Hi Kaito, Take a look at toMap(screenPoint) and toScreen(mapPoint) which may help - they convert coordinates between page and map coordinates. You may be able to obtain the map coordinate of the graphic, convert it to page units, offset it, and convert that back to map units. Steve
... View more
03-13-2012
07:35 PM
|
0
|
0
|
1541
|
|
POST
|
var shape = new esri.geometry.Point(somex, somey, new esri.SpatialReference({wkid:4326})); var simpleMarkerSymbol = new esri.symbol.SomeSymbol(-Insert Attributes Here-).setOffset(5,5); var graphic = new esri.Graphic(shape, simpleMarkerSymbol); I need a way to be able to get the lat long of the graphic post-application of the offset I haven't tested this, but you could try:
var long = graphic.geometry.x;
var lat = graphic.geometry.y;
I'm assuming that the offset only applies to the marker symbol, not to the graphic itself, so the geometry should be unchanged.
... View more
03-13-2012
03:06 PM
|
0
|
0
|
1541
|
|
POST
|
Hi Graeme, Here is a hack-y version - update the label inside the PRJ file using a text editor. This seems to work, although it might not be advisable/supported. Cheers, Steve [ATTACH=CONFIG]12501[/ATTACH]
... View more
03-07-2012
05:03 PM
|
0
|
0
|
2042
|
|
POST
|
There is some additional information at the blog posts below - perhaps we could all leave comments to let Esri know what we like/don't like about the new layout; http://resources.arcgis.com/content/resource-center-sneak-peek http://blogs.esri.com/esri/arcgis/2012/02/23/improvements-to-the-resource-center/ http://blogs.esri.com/esri/arcgis/2012/03/02/updating-the-mapping-center-blog/ Edit: I just posted this: Hi Aileen, Please see the forum posts at http://forums.arcgis.com/threads/52022-Where-did-the-ArcGIS-Server-Blog-go where a lot of people are unhappy with the new format. In particular, it is now actually harder to find the information we want, not easier. Since Esri have so many products, it�??s important to be able to filter information by specific product, not just by area. As an example, the Developers page at http://resourcesbeta.arcgis.com/en/communities/developer/doesn�??t have the ability to filter based on the JavaScript API only. Many developers work with only one of the APIs, and it�??s distracting and time-consuming to sort through results from other APIs. From the URL above, try searching on �??feature layer�?�. It�??s (seemingly) impossible to filter only the JavaScript API entries. It�??s actually faster to use Google than to search within the Esri forums. Please feel free to get in touch directly if you�??d like to discuss this further. Thanks, Steve
... View more
03-05-2012
01:38 PM
|
0
|
0
|
1830
|
|
POST
|
accessing the information that is relevant to me is now harder, if not impossible, and the user interface makes extracting the information out of useful posts harder. Unfortunately, each new change to the Esri site seems to follow this pattern...
... View more
03-05-2012
12:03 PM
|
0
|
0
|
1830
|
|
POST
|
Hi, Does anyone know how to view the geoprocessing window in a separate box that comes up, much like 9.3? I have it now where the process runs in the bottom right corner of ArcMap and I'd rather watch the status in a box. Thanks! For the record, this is found under > GeoProcessing > GeoProcessing options in ArcMap/ArcCatalog.
... View more
02-27-2012
11:49 AM
|
0
|
0
|
1016
|
|
POST
|
For a free HTML, CSS and JS editor on Windows, I can recommend http://www.yaldex.com/Free_JavaScript_Editor.htm
... View more
02-16-2012
12:27 PM
|
0
|
0
|
1930
|
|
POST
|
selectedTaxLot is undefined on this line if (selectedTaxLot.geometry.declaredClass == 'esri.geometry.Point'):
var clickedTaxLotId = grid4.getItem(evt.rowIndex).POINT_NAME;
var selectedTaxLot;
var highlightSymbol = new esri.symbol.SimpleMarkerSymbol().setColor(new dojo.Color([25,50,225,0.3]));
dojo.forEach(map.graphics.graphics,function(features){
if((graphic.attributes) && graphic.attributes.POINT_NAME === clickedTaxLotId){
selectedTaxLot = features;
features should be an array, not a single feature, therefore the last line above won't work. Try putting a Firebug breakpoint on the line if((graphic.attributes)... and see the value of features. You probably want to use features[0]. Cheers, Steve
... View more
02-16-2012
12:20 PM
|
0
|
0
|
2014
|
|
POST
|
PS don't worry, I haven't sold out and decided to include pan arrows on my map. This is for something else 🙂
... View more
02-15-2012
11:10 PM
|
0
|
0
|
1111
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 11-17-2014 08:45 PM | |
| 1 | 03-15-2011 04:23 PM | |
| 1 | 10-18-2019 12:50 AM | |
| 3 | 01-22-2019 02:33 PM | |
| 1 | 09-26-2011 10:36 PM |
| Online Status |
Offline
|
| Date Last Visited |
10-20-2022
12:19 AM
|