|
POST
|
Robert, Isn't there a notable exception *IF* (and only if) you're using vector basemaps? I thought those can actually scale between any ESRI/Google pre-defined LODs.
... View more
12-07-2016
08:11 AM
|
0
|
2
|
1632
|
|
POST
|
The closest I've seen is what was highlighted in this ancient article from ArcUser. Jim Mossman (the creator of the symbol set) retired from mapping so it will be difficult to track down a copy of the symbolset. Hopefully someone out there can post it. Steve
... View more
11-30-2016
09:35 AM
|
0
|
0
|
4735
|
|
POST
|
Try 4326. It looked like you were passing lat/long coordinate values so you need the lat/long WKID which is 4326.
... View more
11-28-2016
03:09 PM
|
1
|
3
|
3505
|
|
POST
|
Since you're using an ESRI basemap, the spatial reference for the map is Web Mercator. A lat/long coordinate in Web Mercator will end up in a vastly different location. Try specifying the right SpatialReference like this: var theLatLongPoint = new Point(theInputCoords[1], theInputCoords[0], new SpatialReference({ wkid: 4326 })); Steve
... View more
11-28-2016
02:59 PM
|
0
|
5
|
3505
|
|
POST
|
featureLayer.ApplyEdits has a callback function so why not increment your counter variable inside that function? It will only increment if the operation is successful so you're sure to have an accurate & current count of added features. I think you can just check its value BEFORE the ApplyEdits method like you kind of have it already. Steve
... View more
11-21-2016
03:49 PM
|
1
|
1
|
1761
|
|
POST
|
How are you opening the HTML code in your browser? Does the address bar say "file:X:\...." or is it an actual "http:\\.." address? Many API versions ago, you could load your HTML file (and JS code) as a locally based file but that has since changed. Now, your HTML code must be located on a web server. Steve
... View more
11-21-2016
07:51 AM
|
1
|
0
|
4216
|
|
POST
|
Make a second copy of the zip code layer in your map but apply a definition query to it to only show the zip codes in San Bernardino and Riverside counties. Apply some sort of "plain" symbology for the features in that layer. Now adjust the layer order such that the SB/Riverside zip code layer is directly above the LA/OC zip code layers in the Table of Contents. The SB/Riverside zip code features will now "mask" out the quintile values without you having to eliminate them from the map. Steve
... View more
11-15-2016
02:08 PM
|
0
|
0
|
861
|
|
POST
|
For Emergency Management symbology, I would recommend you look into the work that NAPSG has done with their Symbol Library Tool (link here).
... View more
11-14-2016
10:46 AM
|
1
|
0
|
3056
|
|
POST
|
Totally unrelated but I had some issues using a JS API map within a web control recently and, during my research about it, I came across this response on Stackoverflow which really gives a lot of great information about the limitations of the webcontrol. I think you've stumbled across it but point #2 in my link discusses that the webcontrol uses default (or least) rendering engine to ensure compatibility. In order to change this, you have to change the META tags. In my own situation, once I did this, my embedded JS API loaded and operated as it should. Good luck! Steve
... View more
11-10-2016
02:50 PM
|
1
|
0
|
1517
|
|
POST
|
It turns out that it is, indeed, this simple. Sure wish the documentation would reflect this. Thanks again.
... View more
11-05-2016
09:26 PM
|
3
|
1
|
5249
|
|
POST
|
I think that's geared more towards situations when you have hosted layers on your account that change (at least that's what their video demonstrates). I didn't get the impression that this was a tool to repair items within a webmap. In my situation, I've added a layer to my map (through AGOL's Find Layers search interface) that is no longer publicly available. I would be dumbfounded if this is actually an oversight on ESRI's part. I mean, *NOBODY* out there has had 3rd party data links break in their web apps?
... View more
11-04-2016
08:39 AM
|
0
|
1
|
5249
|
|
POST
|
That's certainly an option but the downside to that approach is that it would break the web map's share link that I've distributed.
... View more
11-04-2016
07:50 AM
|
0
|
3
|
5249
|
|
POST
|
I have a webmap (link) which was using a layer, published to AGOL, which is no longer available. The layer, County Boundaries, wasn't part of my uploaded content. I get an error message that the layer failed to load but I don't see any way to remove the layer from my map and replace it. It no longer shows up as a layer in the map. What am I missing? How do I remove this so I can replace it?
... View more
11-03-2016
10:20 PM
|
2
|
9
|
6392
|
|
POST
|
Have you tried specifying a formatting function instead of the "inline" method you've shown above? ....},
{
name: 'pocphone',
alias: 'Phone #',
format: {
template: "formatPhone"
}
},....
function formatPhone(value) {
.
.
.
}
I thought I've done this using a featureTable ( I have with plain old dGrid) but I can't track down my own code.. Steve
... View more
11-01-2016
12:53 PM
|
0
|
1
|
2378
|
|
POST
|
In Arcmap, you can just drag the data frame off of the page in layout view and it won't print because it's not located within the printable area of the page. Can you do the same thing in ArcGIS Pro?
... View more
10-26-2016
02:48 PM
|
0
|
0
|
2225
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | Thursday | |
| 1 | Wednesday | |
| 1 | 2 weeks ago | |
| 2 | 2 weeks ago | |
| 1 | 2 weeks ago |