|
POST
|
open an aerial image in ArcReader, go to file/print. Select Adobe PDF printer and export the map. Open the .pdf map in Adobe Acrobat 10 Standard and there are thick White lines across the PDF. Anyone else have this problem? OS is Win7 x64.
... View more
12-12-2012
07:32 AM
|
0
|
4
|
3160
|
|
POST
|
I think you can stop the infoWindow from displaying if you call dojo.stopEvent() right after your onClick that enables the editToolbar
dojo.forEach(layers, function(layer) {
dojo.connect(layer, "onClick", function(evt) {
dojo.stopEvent(evt);
editToolbar.activate(esri.toolbars.Edit.EDIT_VERTICES , evt.graphic);
});
});
ive also had issues with infoWindow showing when you click a new point with template picker over existing featLayer graphics. That issue was fixed using featLayer.disableMouseEvents(); after the template was selected
dojo.connect(templatePicker, "onSelectionChange", function() {
if(templatePicker.getSelected()){
//template selected disable non-editable featLayers onClick event
dojo.forEach(nonEditFeatLayers, function(layer){
layer.disableMouseEvents();
});
}
else{
//template selection cleared, enable onClick
dojo.forEach(nonEditFeatLayers, function(layer){
layer.enableMouseEvents();
});
}
});
... View more
12-07-2012
04:30 PM
|
0
|
0
|
1933
|
|
POST
|
i **think** map.infoWindow.setFeatures was trying to select the first map.infoWindow.feature before it was actually there?? ended up using a setTimeout() workaround to delay setFeatures() a few miliseconds. updated: http://jsfiddle.net/92Q2G/2/
... View more
12-06-2012
10:14 AM
|
0
|
0
|
513
|
|
POST
|
Hi all, I would like to make a search for an address (i.e.: "45 wolfe") and retrieve some data where there is a match. But the trick is that the "45" is from the column [CIVIC_NUM] and the "wolfe" is from the column [ROAD_NAME]. Here is my table structure: [ID, CIVIC_NUM, ROAD_NAME, CITY, STATE]. Is there a way to do this? For now, I'm only able to search separately for each element (such as "45" or "wolfe"). Thank you. specify the fields you want to search using: findParams.searchFields = ["CIVIC_NUM", "ROAD_NAME"];
... View more
12-05-2012
01:40 PM
|
0
|
0
|
408
|
|
POST
|
Hi. I am using the sample code TOC. I want to check which check boxes are click to retireve the relataive attributes. How to check which check boxes are checked ? thanks for the help. loop over the legendLayers array which holds the serviceLayer's and check the boolean visible property. something like this:
dojo.forEach(legendLayers, function(layer){
if(layer.layer.visible){
console.log('this layer is checked and turned on');
}else{
console.log('this layer is off');
}
});
... View more
12-05-2012
01:32 PM
|
0
|
0
|
662
|
|
POST
|
-click 2 overlapping features from 2 dif. featLayers. -Popup auto-selects and highlights map.infoWindow.features[0] -the popup content is actually from map.infoWindow.features[1] after you navigate to the second graphic and back, the popup corrects it's self?? here's the method of fetching graphics/setting infoTemplates 1. buffer map click 2. fill array with all graphics from baseFeatLayers 3. dojo.filter graphics that intersect buffered map click 4. loop over filtered graphics array, setting infoTemplates based on the layer that graphics came from 5. pass selected filtered graphics array to map.infoWindow.setFeatures here's an example using esri data: http://jsfiddle.net/92Q2G/1/ any advice? Thanks.
... View more
12-05-2012
12:15 PM
|
0
|
1
|
905
|
|
POST
|
have a simple map where you can toggle ArcGISDynamicMapServiceLayer "base data" on/off. the map also has a point/polygon/line featureService that is editable. Everything works, when you click on a featureService point, the attribute inspector enables users to edit attributes, the featureTemplate allows users to create new points/lines/polys. I now have a request to enable identifyTask on the base data, I used this example: http://help.arcgis.com/en/webapi/javascript/arcgis/help/jssamples_start.htm which replaces map infoWindow with esri.dijit.Popup. The identify works, all feature.attributes are returned, ect...but the popup is only displayed when I click on a featureService point/poly/line. The attribute inspector popup is also gone, replaced by teh esri.digit.popup. Any idea how to handle this?
... View more
11-29-2012
04:48 AM
|
0
|
1
|
964
|
|
POST
|
have several feat. classes and aerials, all using the same spatial reference. I can export feat. class to .dwg, no problem, but when brought into AutoCAD 2013, the aerial and .dwg do not overlay. How do I export from arcmap 10.1 in a way so CAD recognizes the projection and overlays properly? thanks
... View more
11-26-2012
02:38 AM
|
0
|
0
|
926
|
|
POST
|
logged into customer care portal, and downloaded server SP1 .iso image. This looks like the whole server 10.1 install... Will the installer see I already have 10.1 installed, and only install SP1 ?
... View more
11-14-2012
07:47 AM
|
0
|
0
|
1337
|
|
POST
|
Hi, I just installed and authorized 10.1. I can access the manager from the machine using localhost:6080/arcgis/manager however I can't access it outside using the IP of the machine. Also, I'm not sure what to enter for the ArcGIS server connection to manage the server remotely, elsewhere on the network using ArcCatalog. The IP of the ArcGIS server box is 10.0.40.115. For the host name I just used that IP, and for the server url I've tried the following and none have worked. 10.0.40.115:6080/arcgis 10.0.40.115:6080/arcgis/rest/services 10.0.40.115:6080/arcgis/services Any help? I got the access denied message, either the SOM is not started or the user you're trying to connect with is not a member of the agsadmin or agsuser blah blah. You should be able to access the server rest endpoint from any other computer that is within the local subnet of the ArcGIS Server box. i.e. if another PC inside the LAN has an IP of 10.0.40.xxx, you can access the ArcGIS rest endpoing using 10.0.40.115:6080/arcgis/rest/services. Now, outside your network, via the internet, your going to have to fwd port 6080 from your gateway to the ArcGIS Server box. This isn't reccomended though, you should install the 10.1 web adaptor on your web server. The web adaptor is the 'new' reverse proxy, that hides the port the ArcGIS server is operating on (6080), and also optionally disables /manager and /admin access over the internet.
... View more
09-06-2012
05:38 PM
|
0
|
0
|
896
|
|
POST
|
No, this is this bug http://support.esri.com/en/bugs/nimbus/role/beta10_1/TklNMDgxMjI1 can you post the bug number? for some reason I can't login to the above link, i get the revolving login screen. thanks!
... View more
08-28-2012
12:14 PM
|
0
|
0
|
2869
|
|
POST
|
was able to get 'connection successful' after c/p the file mentioned above, and I can view the roles in /manager, but I cannot view users? the loading bar just spins. Is this the bug 'successful connection' when the string is actually wrong?
... View more
08-28-2012
11:51 AM
|
0
|
0
|
2869
|
|
POST
|
I'm also interested in this question... We have an ArcGIS Server installation behind a firewall. The plan was to use a reverse proxy to direct traffic on port 80 to the ArcGIS Server on port 6080 (or 6443 if SSL secure). If this is configured, is the web adaptor even necessary? exactly my question. we cannot get rid of apache2 reverse proxy as it re-directs port80 and port443 traffic internal LAN ip's based on URL.
... View more
08-24-2012
02:32 PM
|
0
|
0
|
1118
|
|
POST
|
great, thanks for the info; have desktop and server 10.1 downloading now!
... View more
08-24-2012
06:14 AM
|
0
|
0
|
1309
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 3 weeks ago | |
| 2 | 06-19-2026 05:33 AM | |
| 1 | 05-02-2024 04:44 PM | |
| 1 | 11-04-2025 11:45 AM | |
| 1 | 10-31-2025 06:53 AM |
| Online Status |
Offline
|
| Date Last Visited |
Friday
|