POST
|
John, You can download a local copy of v2.0 of the api from the ArcGIS Resource Center. http://help.arcgis.com/EN/webapi/javascript/arcgis/help/jshelp_start.htm#jshelp/inside_faq.htm
... View more
08-16-2010
09:41 AM
|
0
|
0
|
758
|
POST
|
There are a few issues that browsers like Chrome and Firefox don't have problems with that IE does, for example, trailing commas. I've found tools like JSLint helpful in finding these issues, there's an online version of the tool here: http://www.jslint.com/
... View more
08-09-2010
09:03 AM
|
0
|
0
|
201
|
POST
|
The Identify Task sample from the help, shows how to highlight a feature from an info window. http://help.arcgis.com/EN/webapi/javascript/arcgis/demos/identify/identify_drilldown.html
... View more
08-03-2010
07:36 AM
|
0
|
0
|
207
|
POST
|
Version 2.0 of the ArcGIS API for Javascript is now also available for download from the ArcGIS Resource Center. http://help.arcgis.com/EN/webapi/javascript/arcgis/help/jshelp_start.htm#jshelp/inside_faq.htm
... View more
07-30-2010
03:39 PM
|
0
|
0
|
365
|
POST
|
It looks like you are creating a string that looks like an array from your x,y values. You should be able to do something like this instead:
var coords = [];
var polyline = new esri.geometry.Polyline(new esri.SpatialReference({wkid:102100}));
for (i=0;i < xPoints.length -1;i++){
coords.push([xPoints, yPoints]);
}
polyline.addPath(coords);
... View more
07-23-2010
09:17 AM
|
0
|
0
|
803
|
POST
|
There is a sample on the Code Gallery that uses the 1.5 version of the JS API to display data over time, perhaps it will help you setup something similar? http://resources.esri.com/arcgisserver/apis/javascript/arcgis/index.cfm?fa=codeGalleryDetails&scriptID=16642
... View more
07-22-2010
08:44 AM
|
0
|
0
|
224
|
POST
|
Clint, Is this problem only occurring in a particular browser? Maybe IE? If so we added a sample that may help, take a look at the autofocus and refocus code. http://help.arcgis.com/en/webapi/javascript/arcgis/help/jssamples_start.htm#jssamples/map_dialog.html
... View more
07-14-2010
10:07 AM
|
0
|
0
|
241
|
POST
|
Here is a link to a help topic that explains how to work with the bing maps keys. http://help.arcgis.com/EN/webapi/javascript/arcgis/help/jshelp_start.htm#jshelp/ve_getting_started.htm And here's a link to a sample that shows this in action: http://help.arcgis.com/EN/webapi/javascript/arcgis/demos/ve/ve_layer.html
... View more
06-30-2010
10:52 AM
|
0
|
0
|
809
|
POST
|
The ArcGIS JavaScript 2.0 final version was released today. See the ArcGIS Server Blog for more details: http://blogs.esri.com/Dev/blogs/arcgisserver/archive/2010/06/29/ArcGIS-APIs-for-JavaScript-and-Flex_3A00_-Version-2.0-now-final_2100_.aspx
... View more
06-29-2010
09:58 AM
|
0
|
1
|
525
|
POST
|
At 2.0 Final the JavaScript API will be updated to have a bingMapsKey property.
... View more
06-23-2010
10:37 AM
|
0
|
0
|
809
|
POST
|
John, I forgot to mention in my post yesterday that I submitted a bug for the issue with the overview map logo. As far as the sizing issue, have you tried setting the width and height on the div itself? <div id="ovMap" style="width:100%;height:100%;"></div> If you are using Firefox, it might also be helpful to inspect the overview map using the 'Click an element in the page to inspect' tool. Then view the CSS for this element to see if any of the properties you've set are being overridden. I sometimes find it helpful to use the Layout tab (click the HTML tab first). This tab shows the width, height, border, padding and margin of the selected element. You can use the layout to modify the properties and immediately see the effect the new sizes have. Here's some info on using Layout: http://getfirebug.com/layout Kelly
... View more
06-03-2010
07:35 AM
|
0
|
0
|
945
|
POST
|
What behavior are you seeing with the width and height. I created a quick test that uses the accordion container and the width/height of the overview map worked. I've attached a zip file containing my test page.
... View more
06-02-2010
01:44 PM
|
0
|
0
|
945
|
POST
|
I am noticing the same. Also, my feature selection are not showing any longer. Greg, Can you provide more details about the feature selection issue you are experiencing?
... View more
05-27-2010
11:27 AM
|
0
|
0
|
759
|
POST
|
We released an update to v2.0 (beta) of the JavaScript API today, here are the highlights of the release: The overview map, originally a code gallery sample, is now part of the JavaScript API. The documentation is here: http://help.arcgis.com/EN/webapi/javascript/arcgis/help/jsapi_start.htm#jsapi/overviewmap.htm And we have three samples showing how to work with the dijit: http://help.arcgis.com/EN/webapi/javascript/arcgis/help/jssamples_start.htm#jssamples/map_overviewmap.html http://help.arcgis.com/EN/webapi/javascript/arcgis/help/jssamples_start.htm#jssamples/map_overviewmapexternal.html http://help.arcgis.com/EN/webapi/javascript/arcgis/help/jssamples_start.htm#jssamples/layout_styledmap.html We�??ve added several samples that show how to work with Image Services, view them in the Image Service folder on the JS API Samples page: http://help.arcgis.com/EN/webapi/javascript/arcgis/help/jssamples_start.htm We added tooltips to the drawToolbar, these are configurable and can be turned off by setting the showTooltips constructor option to false. We added Temporal rendering support for polyline and polygon features, we have a sample for point features. http://help.arcgis.com/EN/webapi/javascript/arcgis/help/jssamples_start.htm#jssamples/renderer_temporal.html We added the esri logo to the maps, the logo can be turned off by setting the Map constructor option for logo to false.
... View more
05-27-2010
11:21 AM
|
0
|
0
|
759
|
POST
|
Can you provide details on the type of issues you are seeing with centerAndZoom at 2.0? I just tested centerAndZoom base 2.0 version, but it still looks like not work well..... Any comment? Regards, Bing
... View more
05-11-2010
10:51 AM
|
0
|
0
|
658
|
Title | Kudos | Posted |
---|---|---|
2 | Friday | |
1 | a week ago | |
1 | a week ago | |
1 | 09-24-2024 02:37 PM | |
2 | 09-24-2024 09:12 AM |
Online Status |
Offline
|
Date Last Visited |
Friday
|