|
POST
|
my guess is that the graphicslayer is an array and is displaying based on order added. I am not sure if you can "unshift" them or add them at a higher position/lower index.
... View more
07-30-2012
11:34 AM
|
0
|
0
|
1013
|
|
POST
|
I have a map that draws polylines and displays icons. The icons are appearing underneath the graphics, how can I set the layering to always display the icons on top? Do I need to add another graphics layer? As far as I am aware, graphics are always on top. If you want icons on top of graphics you would have to render them IN the graphics layer.
... View more
07-30-2012
09:18 AM
|
0
|
0
|
1013
|
|
POST
|
We use the map api's , which are free. googles terms are difficult to say the least but i believe we follow the spirit.
... View more
07-27-2012
12:11 PM
|
0
|
0
|
2337
|
|
POST
|
good luck. Email me direct if you have any questions jeff.pace (at) mymanatee (dot) org We have done custom widgets for Live Coordinate displays in multiple coordinate systems simultaneously (not using the slow geometry service) Searching Measuring Printing Redlining/Editing (in progress) BaseMap Control with Google Maps as a basemap (integrated full screen streetview) Google Earth Googe Maps as a widget Mailing Lists Identifying multiple services simultaneously (user selectable) Security /logins over https styling via URL
... View more
07-27-2012
04:57 AM
|
0
|
0
|
2337
|
|
POST
|
anytime. Glad to help. Do you have a link to your site?
... View more
07-26-2012
05:42 AM
|
0
|
0
|
2531
|
|
POST
|
I wouldnt put in aspx, but that is just a preference. Hiding the widgetcontainer should be easy. 1: in the WidgetContainer,html add an id to line 2 and set to hidden for startup <div class="widgetContainerControls widgetBox" id="wc" style="display:none;"> 2: in WidgetContainer.js add code to toggle in opening and closing widgets in onShowWidget under if (widget)
...
if (widget) {
dojo.style(dojo.byId("wc"),"display","block"); //if new widget, show controls
in closeWidget before the for loop add //last child
if(children.length== 1){
dojo.style(dojo.byId("wc"),"display","none"); //just closed last widget, hide controls
}
//existing code
for (var i = 0; i < children.length; i++) {
...
... View more
07-25-2012
10:07 AM
|
0
|
0
|
2531
|
|
POST
|
I have done the save conversion in JavaScript as well. Be very careful in determining if your State Plane is Lambert or Transverse Mercator, it is two different calculations Here is some code for going to and from SP to LL, and to UTM and USNG as well. Wicked fast, we use it for moveover live coordinate display. (I only convert LL to SP in transverse mercator, since that is what florida west is) (had to attach, is 21000 lines) Link in action to show speed http://www.mymanatee.org/gisapps/mapviewer/index.jsp?type=default&widgetOn=Coordinates
... View more
07-25-2012
09:03 AM
|
0
|
0
|
3610
|
|
POST
|
Its going to be harder than I thought. ESRI does not ID the components well. The create feature is a table with id="esri_dijit_editing_tools_Editing_0" Delete has no id by a widgetid of "btnDelete2" thats a shame.
... View more
07-23-2012
11:52 AM
|
0
|
0
|
2349
|
|
POST
|
Which buttons? would it be sufficient just to hide them?
... View more
07-23-2012
11:31 AM
|
0
|
0
|
2349
|
|
POST
|
We edit projected data. However The projection is done in the mxd, not in the application (not an on-the-fly projected service). Our data is native State Plane. We project the data frame of the mxd to Web Mercator. All editing is done natively in the app in Web Mercator. The data is stored in State Plane in SDE. One caution is coordinates. If you natively capture xy you need to project them to state plane.
... View more
07-23-2012
08:28 AM
|
0
|
0
|
950
|
|
POST
|
Hi jeff your link doesn't work can you provide a new link Please can you help me to solve this : i want to put the viewer in a div in aspx page and i want to interact between page events and the viewer itself: for example by clicking on a button in the aspx page i can add a marker on the map, change map extent, zooming to feature and all other map events ...... wow sorry typo http://www.mymanatee.org/gisapps/mapviewer/index.jsp?type=defualt
... View more
07-23-2012
05:28 AM
|
0
|
0
|
2531
|
|
POST
|
for one, that service is 102113, not 102100 odd and secondly, according to the imageParameters when creating a ArcGISDynamicMapServiceLayer, you could try to specify the exportimageformat and SR http://help.arcgis.com/EN/webapi/javascript/arcgis/help/jsapi/imageparameters.htm so likely its is on your new esri.layers.ArcGISDynamicMapServiceLayer call. And for some reason i remember having the same issue about the 1.6 to 2.0 api change.
... View more
07-18-2012
08:04 AM
|
0
|
0
|
3085
|
|
POST
|
I tried the foreclosure one. I get a 404 on http://wcgisweb.washoecounty.us:8888/ArcGIS/rest/services/ForeclosuresWebMercator/MapServer/export?dpi=96&transparent=true&format=png8&layers=show%3A0&bbox=-13339465.757192234%2C4797728.902907369%2C-13336790.461202184%2C4799878.694327946&bboxSR=null&imageSR=null&size=1120%2C900&f=image when i zoom to an address that is causing the hang. It is a result of the bboxSR=null&imageSR=null parameters in the url. If you remove them or set them properly it works.
... View more
07-18-2012
07:33 AM
|
0
|
0
|
3085
|
|
POST
|
Hi Jeff, I understand that it has to be public facing, we need IP address so that we can open the firewall for http://utility.arcgis.com/sharing/kml Its not that you need to be able to access the internet, the internet needs to be able to access the KML file (it cant be behind a firewall that blocks traffic)
... View more
07-17-2012
08:48 AM
|
1
|
0
|
1746
|
|
POST
|
Hi, We need an IP address of server hosting http://utility.arcgis.com/sharing/kml Business Justification: -We are uploading a KML document using a service to server. -This service then returns the URL of the file. -The server to which KML file is uploaded is behind the firewall. -It is not possible for client to open this server to entire domain. Any help is greatly appreciated. Because of google requirements KML must be on a public facing server.
... View more
07-17-2012
07:54 AM
|
0
|
0
|
1746
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-22-2014 08:35 AM | |
| 1 | 05-02-2012 04:56 AM | |
| 1 | 10-29-2021 07:40 AM | |
| 1 | 10-28-2021 05:26 AM | |
| 1 | 07-17-2012 08:48 AM |
| Online Status |
Offline
|
| Date Last Visited |
03-01-2022
02:00 PM
|