|
POST
|
Hello, I was messing with the log settings a few days ago, and since then my ArcGIS Server Statistics are displaying zero requests every day even though I know for sure many requests are being sent. I checked the usage settings in the Admin directory and everything looks fine there. I attached a screen capture. I'm not sure what I did. Thanks.
... View more
12-16-2016
07:06 AM
|
0
|
10
|
5142
|
|
POST
|
Thanks Robert. I tried the css way, but that didn't seem to do anything. I obtained the panel id from DevTools and added the code to my css file: #widgets_LayerList_Widget_17_panel{ width: 50px; } I'll take a look at the startup function code though to see if that works.
... View more
11-21-2016
10:23 AM
|
0
|
0
|
1273
|
|
POST
|
Hello. I would like to decrease the width of the LayerList widget. I am using WAB Developer's 2.1. I have looked at the LayerList API reference but did not find anything about width. LayerList | API Reference | ArcGIS API for JavaScript 3.18 I have attached a screenshot. Basically I would like to reduce the amount of white space between the layer names and the 3 dots. Thanks!
... View more
11-21-2016
08:39 AM
|
0
|
2
|
2575
|
|
POST
|
Robert, Thanks for checking. I will let Esri Support know about this on Monday.
... View more
09-10-2016
06:53 AM
|
0
|
1
|
1812
|
|
POST
|
Thank you Babatope. I tried that but get the same results. I'm not sure I am understanding what changing the zoom scale actually does. I've tried using 500, 10000, 500000, 2000000 but I don't see any difference after I enter an address. It zooms to the same exact extent. For example, entering 90210 goes to the same exact extent every time.
... View more
09-09-2016
07:31 AM
|
0
|
7
|
1812
|
|
POST
|
According to this documentation I can change the zoom level for the Search widget. I have tried it several times but don't see any changes. I save the app every time then relaunch. Shouldn't this change the initial zoom level after you enter an address? Every time I change it it zooms to the same extent however. Maybe I am missing something. Thank you! Be default, zoom scale is defined as 1:50,000. Change it if necessary. Search widget—Web AppBuilder for ArcGIS | ArcGIS
... View more
09-07-2016
01:53 PM
|
0
|
12
|
4914
|
|
POST
|
Actually I found in one of your posts that you said a comma after the baseClass line is needed if the startup line is uncommented. I added this and it works now. Thanks!
... View more
04-04-2016
11:08 AM
|
1
|
0
|
1309
|
|
POST
|
Thanks Robert, I copied and pasted the code, so I'm not sure. Here is the code in my Widget.js file. define(['dojo/_base/declare', 'jimu/BaseWidget'], function(declare, BaseWidget) { //To create a widget, you need to derive from BaseWidget. return declare([BaseWidget], { // Custom widget code goes here baseClass: 'jimu-widget-mywidget' startup: function() { this.inherited(arguments); this.mapIdNode.innerHTML = 'map id is:' + this.map.id; }, //methods to communication between widgets: }); });
... View more
04-04-2016
10:44 AM
|
0
|
1
|
1309
|
|
POST
|
I am going through the custom widget tutorial here: Create a custom in-panel widget—Web AppBuilder for ArcGIS (Developer Edition) | ArcGIS for Developers On Step 8, when I click the icon, I get the following error: create widget error: widgets/samplewidgets/MyWidget/Widget In DevTools I see: Unexpected identifier WidgetManager.js:108 create [widgets/samplewidgets/MyWidget/Widget] error:TypeError: clazz is not a constructor Any ideas? I am using version 1.3 of web appbuilder. Thank you.
... View more
04-04-2016
08:56 AM
|
0
|
4
|
5569
|
|
POST
|
Hi Hunter, Have you heard anything regarding the filter widget and a release date? Thank you!
... View more
11-20-2015
12:15 PM
|
0
|
4
|
2416
|
|
POST
|
Hello. I am following the reverse geocoding example here: https://developers.arcgis.com/javascript/jssamples/locator_reverse.html My application does geocoding fine. I want to also do reverse geocoding by clicking a point on the map. I really just need a string of the address so I can pass this as a parameter into a new url. I don't want the address in a new infowindow. Is there a way to do this? thank you! locator = new Locator("http://geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer");
locator.on("address-to-locations-complete", showResults);
//locatorReverse = new Locator("http://geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer");
locator.on("location-to-address-complete", function(evt) {
if (evt.address.address) {
var address = evt.address.address;
var location = webMercatorUtils.geographicToWebMercator(evt.address.location);
}
});
map.on("click", function(evt) {
locator.locationToAddress(webMercatorUtils.webMercatorToGeographic(evt.mapPoint), 100);
});
// listen for Locate button click then geocode
registry.byId("locate").on("click", locate);
... View more
06-30-2014
10:37 AM
|
0
|
0
|
2340
|
|
POST
|
Oh man I can't believe I didn't see that! Thank you. That worked.
... View more
06-23-2014
08:35 AM
|
0
|
0
|
720
|
|
POST
|
Hello, I have an Identify task and I am using this example: http://developers.arcgis.com/javascript/samples/find_popup/ Is it possible to change the opacity of the result? Currently fill-opacity is set to 0.25 and color is yellow. When I click inspect element: path[Attributes Style] { fill: rgb(255, 255, 0); fill-opacity: 0.25; stroke: rgb(255, 0, 0); stroke-opacity: 1; stroke-width: 2px; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 4; stroke-dasharray: none; fill-rule: evenodd; } I want the opacity to be 0.10. I have added the following to my css, but it does not override the 0.25 opacity. path[Attributes Style] { fill: rgb(255, 255, 0); fill-opacity: 0.10; } I have added code to my css to change the size of the esri popup, so I am guessing it is possible. This works: .esriPopup .sizer { width: 200px; } Thank you.
... View more
06-23-2014
06:23 AM
|
0
|
3
|
1033
|
| Title | Kudos | Posted |
|---|---|---|
| 5 | 11-01-2023 07:21 AM | |
| 1 | 06-22-2021 06:58 AM | |
| 1 | 01-11-2019 07:17 AM | |
| 1 | 04-04-2016 11:08 AM | |
| 1 | 07-23-2019 01:16 PM |
| Online Status |
Offline
|
| Date Last Visited |
10-27-2025
06:53 AM
|