|
POST
|
...The ArcGIS Web APIs provide simple feature editing. The features must come from an ArcSDE geodatabase. This geodatabase can be licensed for either workgroup or enterprise use and does not have to be versioned... for not versioned data: ...You cannot edit feature classes in a topology or geometric network. This is because when you edit a feature in a network or topology, not all the features in the network or topology lock, which means other editors can edit another part of the network or topology in a way that conflicts with your edits...
... View more
06-07-2011
09:27 AM
|
0
|
1
|
1587
|
|
POST
|
see http://forums.arcgis.com/threads/7108-Bing-Maps-for-ArcGIS-Server-and-Projections
... View more
05-31-2011
12:19 AM
|
0
|
0
|
327
|
|
POST
|
in service directory you can see your applications and templates (if you add new templates or applications restart service because list of templates/applications is built in costruct soe) : your applications http://localhost/<your instance ags>/rest/services/<yourservice>/MapServer/exts/Print?f=pjson see all template of application (for example with id=0) http://localhost/<your instance ags>/rest/services/<yourservice>/MapServer/exts/Print/applications/0?f=pjson for print template with id=0 in the application with id=1 http://localhost/<your instance ags>/rest/services/<yourservice>/MapServer/exts/Print/applications/1/templates/0/printtemplate I have added a sample in javascript . You can see this soe http://resources.arcgis.com/gallery/file/arcobjects-net-api/details?entryID=87BEC705-1422-2418-34B5-308930DE323A that it has a sample for flex and so you can see how call a rest soe service with flex
... View more
05-30-2011
10:03 AM
|
0
|
0
|
1529
|
|
POST
|
if you want interested I have posted this soe: http://resources.arcgis.com/gallery/file/ArcObjects-.NET-API-Code-Gallery/details?entryID=C1D79B4A-1422-2418-7F85-D12BA0680EAA I have added a sample with api javascript esri
... View more
05-24-2011
08:15 AM
|
0
|
0
|
1529
|
|
POST
|
you can use code like: http://www.spoiledtechie.com/post/2010/08/04/How-to-publish-a-ArcMap-to-the-ArcGIS-Servere280a6.aspx and so you can se your properties For msd see the interface IMSDHelper: http://help.arcgis.com/en/sdk/10.0/arcobjects_net/componenthelp/0012/001200044440000000.htm
... View more
03-17-2011
04:55 AM
|
0
|
0
|
974
|
|
POST
|
... and 10.1 is supported only vs2010 (there is support for framework 4.0) http://blogs.esri.com/Dev/blogs/arcgisdesktop/archive/2011/02/04/Visual-Studio-Suport.aspx
... View more
03-15-2011
10:54 AM
|
0
|
0
|
520
|
|
POST
|
You could generate the image into a file and return it as bytes, and specifying a MIME type as "image/..." as the Content-Type. You could do:
//Generate your image
byte [] image = image.getBytes();
responseProperties[0] = @"{"Content-Type" : "image/png" }"
return bytes;
Raul: responseProperties is a string. it isn't a string[].
... View more
03-01-2011
01:34 AM
|
0
|
0
|
987
|
|
POST
|
map has event onclick where you can use event for get mapPoint or screenPoint
dojo.connect(map, "onClick", function(evt) {
alert(evt.mapPoint.x + " " + evt.mapPoint.y);
});
... View more
01-28-2011
04:18 AM
|
0
|
0
|
346
|
|
POST
|
var loading = dojo.byId("progress");
function QueryByZip(Zip_ID){
map.graphic.clear();
esri.show(loading);
var queryTask= new esri.tasks.QueryTask("http://128.146.162.230/arcgis/rest/services/KC_zipcodes/MapServer/2");
dojo.connect(queryTask, "onComplete", zoomToZip);
var query = new esri.tasks.Query();
query.where = esri.substitute({zip: Zip_ID},"ZIP = '${zip}'");
query.returnGeometry = true;
query.outFields = ["ZIP"];
queryTask.execute(query);
}
function zoomToZip(featureSet){
var features = featureSet.features;
map.graphics.add(features[0].setSymbol(zipSymbol));
var queryTask2= new esri.tasks.QueryTask("http://128.146.162.230/arcgis/rest/services/KingCountyAllOverlaysForQueryNew/MapServer/0");
dojo.connect(queryTask2, "onComplete", selectTracts);
var query2 = new esri.tasks.Query();
query2.geometry = zipGraphic.geometry;
query2.spatialRelationship = esri.tasks.Query.SPATIAL_REL_INTERSECTS;
query2.returnGeometry = true;
queryTask2.execute(query2);
}
function selectTracts(featureSet) {
var featureTracts = featureSet.features;
map.graphics.add(featureTracts[0].setSymbol(highlightS ymbol));
//if point
if (featureTracts[0].geometry.type === 'point')
var factor = 1000;
extent = new esri.geometry.Extent(pt.x - factor, pt.y - factor, pt.x + factor, pt.y + factor, pt.SpatialReference);
}
else
extent = featureTracts[0].geometry.getExtent();
map.setExtent(extent);
} .
remember that all task return dojo.Deferred so you can add a callback for run a task after first task and so you have more control for abort erroback ect.
... View more
01-25-2011
06:17 AM
|
0
|
0
|
952
|
|
POST
|
in relation you can write myGeometryService.relation(compareArray1, compareArray2,GeometryService.SPATIAL_REL_RELATION ,"G1 != G2") you must use G1 (compareArray1) and G2(compareArray2) and not compareArray1 and not compareArray2 confront is done for index: compareArray1[0] with compareArray2[0] compareArray1[1] with compareArray2[1] ..... IDENTICAL (G1, G2) = TRUE IDENTICAL (G1, G2) = FALSE G1 == G2 G1 = G2 G1 != G2 you also can reverse order G2 != G2 ....
... View more
01-23-2011
09:03 AM
|
0
|
0
|
356
|
|
POST
|
use soap http://resources.esri.com/help/9.3/arcgisserver/apis/soap/SOAP_Geometry_Project.htm
... View more
01-18-2011
09:50 PM
|
0
|
0
|
1514
|
|
POST
|
links: http://www.frosties.com/index.php?option=com_mojo&Itemid=45&p=3 http://resources.esri.com/arcgisserver/apis/javascript/arcgis/index.cfm?fa=codeGalleryDetails&scriptID=16934 http://resources.esri.com/arcgisserver/apis/javascript/arcgis/index.cfm?fa=codeGalleryDetails&scriptID=16432
... View more
01-04-2011
10:20 AM
|
0
|
0
|
724
|
|
POST
|
you can use arcobjects making soe via rest (see for an example http://resources.arcgis.com/gallery/file/arcobjects-net-api/details?entryID=87BEC705-1422-2418-34B5-308930DE323A ). see also this document (deprecation adf) http://downloads2.esri.com/support/TechArticles/ArcGIS10and101Deprecation_Plan.pdf
... View more
12-20-2010
02:10 AM
|
0
|
0
|
475
|
|
POST
|
from help seems there isn't cancelJob ( http://services.arcgisonline.com/ArcGIS/SDK/REST/index.html?overview.html ). I advise use cancelJob from soap
... View more
12-10-2010
11:48 PM
|
0
|
0
|
464
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 06-20-2024 11:20 AM | |
| 1 | 05-25-2017 10:11 AM | |
| 1 | 06-20-2023 12:09 AM | |
| 1 | 10-14-2022 05:14 AM | |
| 1 | 06-14-2023 02:00 AM |
| Online Status |
Offline
|
| Date Last Visited |
09-10-2025
05:25 AM
|