|
DOC
|
After I added it and saved, this is what it displayed when I went ot use the dropdown menu: M\&G
... View more
12-10-2015
01:16 PM
|
0
|
0
|
6811
|
|
DOC
|
Hey all, I entered some predefined values in the the Update Expression Value window to build the SQL statement, but we have a Zone Type called M&G. The widget doesn't like the "&" sign and it will not search that layer. Is there a way to get around this and search this layer with it being predefined?
... View more
12-10-2015
11:42 AM
|
0
|
0
|
6811
|
|
POST
|
Thank you. I didn't even see the option to put them in the header. That makes a huge difference. Thanks again!
... View more
12-09-2015
01:34 PM
|
0
|
0
|
1245
|
|
POST
|
Is it possible to add more than three custom widgets to an app at a time? With flex we have the legend, search, layer list, draw, bookmarks, and print. I don't see an option to add more than three widgets at a time.
... View more
12-09-2015
01:24 PM
|
0
|
4
|
3792
|
|
DOC
|
Robert, After downloading the widget again and creating a new service, I was able to successfully install the eSearch app. It works great! How difficult would it be to make it so when you apply a search distance, you can export your results to either a usable GIS file or at least export the table? Does this functionality already exist somewhere? Thank you, you do great work.
... View more
12-08-2015
03:15 PM
|
0
|
0
|
6811
|
|
DOC
|
Per Tapas Das's instructions. Simplified explanation - downloaded your app from this forum, extracted and added it to my C:\WAB\client\stemapp\widgets\eSearch, registered my app with online, started WAB locally with 'startup.bat' and gave Online my credentials, created the map, added the eSearch widget and configured it to search. I think I'm going to redownload the eSearch and readd and configure the widget again.
... View more
12-03-2015
10:21 AM
|
0
|
0
|
7129
|
|
DOC
|
Per your recommendation I just did. It doesn't give me the error when using any of the other widgets. As Kevin mentioned in the next post, it may be good to hop on tech support.
... View more
12-03-2015
09:02 AM
|
0
|
0
|
7129
|
|
DOC
|
Hi Robert Scheitlin, GISP I am using the following setup and getting the error "create widget error widgets/eSearch/Widget" when trying to open the Enhanced Search Widget: Enhanced Search Widget v 1.2.0.6 Developer WAB version 1.2 - Locally Why am I getting this code? @ Below is what the console says in Google Chrome: I am very new to this WAB stuff, but need to get it working. I've been following Tapas Das's instructions for setup because it was the only 'how-to' I could find and it is very helpful.
... View more
12-03-2015
08:46 AM
|
0
|
0
|
7129
|
|
POST
|
Actually, the same works without creating a shapefile. Just add a point drawing to the map layout and change it to a picture marker symbol. It is the same, but you don't have to edit a layer if you want to resize or move it. Much more simple.
... View more
12-01-2015
10:39 AM
|
0
|
7
|
2454
|
|
POST
|
I found a work around the other day by accident. If you have a PNG and you want the background to be transparent - first you'll need to be in layout view - 1)create a point shapefile, 2)place the point where you would like your logo to be on the map, 3)Edit the symbology to be a Picture Marker Symbol 4)Change the size to something very large By doing it this way, it preserves the transparency layer. It's a simple work around, and doesn't require a person to use another program to export a different file type. Hopefully this helps. Let me know if you have questions in the process.
... View more
02-17-2015
09:56 AM
|
4
|
8
|
2454
|
|
POST
|
Thanks for the response Steven. I rearranged everything like you've mentioned, but when I run it on the live, it shows up white. The same in the JavaScript Sandbox. I can't get both the locate tool and the layers to show on the same map application...programming is frustrating and rewarding. Right now it is frustrating.
... View more
11-04-2014
08:56 AM
|
0
|
0
|
976
|
|
POST
|
You might be able to tell, I'm a newbie to this javascript API. I have had luck creating web applications of both the LocateButton and one of the ArcGISDynamicMapServiceLayer in separate applications, but when I try to combine the two, it comes up blank. Can someone explain to me, a newbie, why this won't work please? Can you give me a link to a functioning web application built on Javascript and HTML with multiple widgets in it?
<meta name="viewport" content="initial-scale=1, maximum-scale=1,user-scalable=no"> <title>TEST</title> <link rel="stylesheet" href="http://js.arcgis.com/3.11/esri/css/esri.css"/> <link href="https://community.esri.com//netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet" media="screen"> <link rel="stylesheet" type="text/css" href="http://esri.github.io/bootstrap-map-js/src/css/bootstrapmap.css"> <style> html, body, #mapDiv{ padding: 0; margin: 0; height: 100%; } #LocateButton { position: absolute; top: 98px; left: 20px; z-index: 50; } </style> <script src="http://js.arcgis.com/3.11/"></script> <script> var map; require([ "esri/map", "esri/dijit/LocateButton", "esri/layers/ArcGISDynamicMapServiceLayer", "esri/layers/ImageParameters", "dojo/domReady!" ], function ( map, LocateButton, ImageParameters, ArcGISDynamicMapServiceLayer, ) { map = new Map("mapDiv", { basemap:"hybrid", zoom: 11, center:[-110.60, 39.60], sliderOrientation : "horizontal", scrollWheelZoom: true }); var imageParameters = new ImageParameters(); imageParameters.format = "jpeg"; //set the image type to PNG24, note default is PNG8. //Takes a URL to a non cached map service. var dynamicMapServiceLayer = new ArcGISDynamicMapServiceLayer("http://maps.carbon.utah.gov/arcgis/rest/services/LatLong/MapServer/", { "opacity" : 1, "imageParameters" : imageParameters }); var geoLocate = new LocateButton({ map: map }, "LocateButton"); geoLocate.startup(); }); map.addLayer(dynamicMapServiceLayer); }); </script> </head> <body> <div id="mapDiv"></div> </body> <!-- jQuery (for Bootstrap's JavaScript plugins). NOTE: You can also use pure Dojo. See examples. --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <!-- Include all plugins or individual files as needed --> <script src="//netdna.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script> </html>
... View more
11-04-2014
08:23 AM
|
0
|
4
|
1311
|
|
POST
|
Thanks for the quick response. I guess I didn't ask what I thought I was asking. I want the symbology to reflect the data frame's symbology too. Can I just change the symbology in the main frame and then have it change the others as well or is they independent of each other that way?
... View more
01-29-2014
11:45 AM
|
0
|
0
|
1044
|
|
POST
|
I am making a map that contains multiple data frames. Is there a way to have all my data layers in the Main Data Frame be the parent data and the other data frames contain a layer that points back to the parent? If so, I could edit the parent data and it would reflect it in the other data frames and would help my data stay constant and accurate across my map. Otherwise there is too much data to remember to change when editing symbology and in the table. I would prefer, at this point, not to script it because of time constraints.
... View more
01-29-2014
10:53 AM
|
0
|
5
|
1168
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 12-29-2015 02:47 PM | |
| 4 | 02-17-2015 09:56 AM | |
| 1 | 01-14-2016 07:38 AM | |
| 1 | 01-27-2016 12:09 PM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:23 AM
|