|
POST
|
That's how I set up that map. I think you can do this from Catalog too, by publishing the data directly to ArcGIS for Server but I'm not 100% certain on that.
... View more
11-26-2014
06:57 AM
|
1
|
0
|
3997
|
|
POST
|
I have followed you. If you follow me then we can message each other. Feel free. I am more than interested.
... View more
11-25-2014
12:07 PM
|
0
|
1
|
3257
|
|
POST
|
This is my biggest complaint about all of what ESRI is trying to do. They don't seem to be listening very carefully to their paying customers sometimes and requiring us to utilize an online service from them to access our own data just seems ridiculous. And quite overbearing... ugh!
... View more
11-25-2014
06:59 AM
|
6
|
3
|
3257
|
|
POST
|
Brian, do you know if WAB apps that are downloaded from the Developer edition are suppose to have an 'appID' property in the config.json file? I do not know this. I assume that they do but that they are added through the WAB? I'm just guessing here. Because of that point in the WAB app building process where you pick your AGOL map from the list. I think that adds the appID somehow. The WAB development edition help docs online indicate that they do have an 'appID' property, but the help docs on deploying an app are not very comprehensive. I have not been impressed with the WAB documentation so far, but maybe I have high standards? I don't know. Also did you add a proxy to your app. It seems like alot of work to set it up a proxy so I wanted to know. I did not add a proxy. Not even sure what the purpose of a proxy is nor why one would be needed.
... View more
11-25-2014
06:57 AM
|
0
|
0
|
1789
|
|
POST
|
Objects. That video sent me on a spiraling google-express to depression until... Introduction to AMD Modules - The Dojo Toolkit
What is a module?
A module is a value that can be accessed by a single reference. If you have multiple pieces of data or functions that you want to expose in a module, they have to be properties on a single object that represents the module. Practically speaking, it's overkill to create a module for a simple value like var tinyModule = 'simple value'; , but it would be valid. Modules start to make a lot more sense for modularizing your code - splitting it up into logical subsets for handling specific functionality. If you want to represent a person with information like name and address, perhaps even add some methods to your person, it starts to make sense to put all that code in a single location. A module is stored in your file system in a single file.
I'm sure the developers working hard on custom widgets are chuckling at me, but this has eluded me from every tutorial I have watched and read on Dojo. Nobody has clarified this until something clicked just now. Basically...
define({
library: 'dojo' ,
version: 1.10
});
The module becomes nothing more than a JS Object with two attributes in this instance. And...
define( function (){
var privateValue = 0;
return {
increment: function (){
privateValue++;
},
decrement: function (){
privateValue--;
},
getValue: function (){
return privateValue;
}
};
});
The module becomes a JS Object with three methods (increment, decrement, getValue) that all manipulate a variable / attribute that is untouchable any other way. Everything clicked. Now... to the batmobile!
... View more
11-20-2014
09:43 AM
|
2
|
1
|
2597
|
|
POST
|
I remember seeing (at one point) an Open Data Web App that allowed you to host (on your own site) a front-door to your ArcGIS Online Open Data Links. I "THOUGHT" it was called an Open Data App or soemthing... but I've blown the last 30 minutes searching for this thing to no avail. Does anyone have a pointer for me?
... View more
11-17-2014
10:40 AM
|
0
|
1
|
4913
|
|
POST
|
The legends created by WAP / AGOL are shaped and defined by ESRI. Recently, my web group was working with me on a map development for a specific use case. In the process, I turned off the legend in the map and they embedded the map and created a custom legend in the HTML surrounding the embedded map. It was gorgeous. I forgot what a nice looking legend can do for a map. So now I am thinking for some future maps, I would rather just develop an HTML blurb with custom CSS/etc. and have THAT be my legend. Is there a custom HTML popup / Widget that can be used to display custom HTML in lieu of a legend or even just as HTML popup?
... View more
11-17-2014
08:30 AM
|
0
|
0
|
2138
|
|
POST
|
That is gorgeous... I also think I understand the majority of the code. Altho, I am more confused by the config stuff versus the javascript! What would be involved if I wanted to make this visible underneath the MyLocation button? It appears that those buttons are scaled/sized differently than the buttons across the bottom? Also, (trying to learn as much as I can here!) could I just make this a 'generic' button (unconnected to top or bottom widget groups) and allow the user to add it from the WAB so that it sized itself correctly?
... View more
11-17-2014
07:56 AM
|
0
|
2
|
2381
|
|
POST
|
Alrighty... So I'm wanting to 'tentatively' step into custom widget design. I still have a VERY difficult time grasping the Dojo Modules concept, but what I want to do shouldn't require that. So... I have created a new widget, I called it (ingeniously enough) "MagnifyingGlass" because that's what the end users want. I have copied from the WAB Sample Widget the SimpleWidget folder structure for the 'Get Map Id' widget example. I have renamed everything. I have added it to the site config file so that it shows up. It is now visible on one of my dev maps. It is the button that is a Duplicate of the BOOKMARK widget button, in the bottom left set of 4 buttons. If you hover over it it says 'Zoom' The problem is what happens when you click it! It opens a friggin window? Popup... What I want it to do is simply "this.map.enableRubberBandZoom();" and nothing more. The whole goal for this widget is to simply add a button that users can click that lets them THEN click and drag to draw a Zoom window. Apparently, this is functionality that SHOULD be (obviously) on all maps. SO... In my Widget.js file (remember I copied the Simple Widget example files) I have commented out the templateString, rewrote _getMapID to now be _init simply because I don't know what I'm doing (and I'm not sure where to look). The whole goal is the Rubber Ban Zoom Box creation after clicking the Widget button. Period. Anyone got any tips? ps I'll post this widget in case anyone has a need (once I get it finished and working).
... View more
11-14-2014
12:04 PM
|
2
|
4
|
6247
|
|
POST
|
My thoughts are simply a webcounter (if you will) showing each time a REST Service is hit. It would be GREAT if it could compile these hits into sessions. So that I could tell that USER X accessed the map, hit the REST Service 25 times (probably by scrolling or address locating) and access this REST Service twice via popups (I could tell popups because certain layers have popups and certain layers don't).
... View more
11-14-2014
09:24 AM
|
1
|
5
|
5038
|
|
POST
|
So I want to have Google Analytics for my WAB Maps. I realize this is a MUCH better environment for this than back in Flex (where you had to have widgets and such to do this) but I am curious what the best way to do this would be? I have considered creating a WAB Template map that has Google Analytics code pre-populated requiring minor adjustments. I have considered trying my hand at a Widget (for several reasons). I have considered just editing the code once the WAB Map is completed. Is there a recommended process for this? Or are we wild westing this stuff right now since WAB is still in BETA?
... View more
11-14-2014
08:02 AM
|
0
|
24
|
16586
|
|
POST
|
So in this post I asked about how to add images to the links that you can create in a WAB Map. Now I am wondering about how to stylize this section without having to recode the html. I've already had to go in and modify most of my WAB maps for a custom Geocoder response, a branded loading page, and more. I'm assuming there is some way to get those links in the header to float to the right of the screen without recoding a stack of the HTML / CSS. Any ideas or suggestions?
... View more
11-14-2014
08:01 AM
|
0
|
0
|
2657
|
|
POST
|
Long time listener, first time poster. Curious if anyone knows what process would be required to track REST Service usage, much like Google Analytics tracks webpage usage. Having 100% access to my ESRI ArcGIS Server I can install stuff to the actual server, which is where I imagine I would need to do this. I'm not all that familiar with the technology behind REST Services, other than how to utilize them in mapping applications (both web driven maps and through desktop). But I am fairly familiar with server technology, having worked with web dev on and off for years now. My gut feeling about this is that there is some sort of server tech / app that would check this type of thing, but I was hoping someone knew about an ESRI component or setting that would provide this.
... View more
11-14-2014
07:56 AM
|
0
|
1
|
4389
|
|
POST
|
I have X-Ray. It won't give me the data dictionary under the View menu. My Local Government data model is in an Enterprise SQL SDE, rather than GDB, so I'm sure that's affecting it. But my point is, finding the Data Dictionary is like searching for the lost city of Atlantis.
... View more
11-13-2014
11:06 AM
|
1
|
4
|
7377
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-14-2015 08:51 AM | |
| 1 | 06-02-2016 02:00 PM | |
| 1 | 10-09-2015 07:43 AM | |
| 1 | 10-09-2015 09:42 AM | |
| 1 | 02-09-2016 07:10 AM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:23 AM
|