|
POST
|
If you just need points, you can find cemeteries withing the Census Bureau's MTDB - TIGER/Line Shapefile, 2014, state, Colorado, Point Landmark State-based Shapefile - Data.gov Some of the more common landmark types include area landmarks such as airports, cemeteries, parks, mountain peaks/summits, schools, and churches and other religious institutions.
... View more
01-28-2016
07:52 AM
|
1
|
1
|
2356
|
|
POST
|
Brian, Are you still having trouble? I checked the Parks Shortlist map and it no longer reports a 404 - it loads the page fine on my end in Chrome: Parks and Trails
... View more
01-28-2016
07:46 AM
|
0
|
2
|
2698
|
|
POST
|
Esri staff do monitor the forums - it's possible Bjorn Svensson may have some insight and could log a bug (if it turns-out to be one). Since it is in beta, Esri is still working-out the kinks. Do you need v4 API functionality? I would be wary of using v4 in any sort of production capacity.
... View more
01-28-2016
06:42 AM
|
0
|
1
|
2043
|
|
POST
|
I had a chance to look more into this - it seems to be an issue with special chars... I'm not sure it's even a proxy issue, but, so far, I've found the request cancels as soon as the following chars are encountered: * # • ¢ é I have a PowerShell script I'm using to create a list of unique chars so I can debug easier: $letters = @{} ; gc file.txt | select -Skip 2 | % { $_.ToCharArray() } | % { $letters[$_] = $true } ; $letters.Keys I'm going through the list now and testing suspect chars - there's about 50 of them, unfortunately. UPDATE: Adding link to QueryTask.ExecuteAsync() /w Special Characters
... View more
01-27-2016
02:10 PM
|
0
|
1
|
3597
|
|
POST
|
It might be an issue with the v4 beta JSAPI - it doesn't appear to affect 3.15 - http://developers.arcgis.com/javascript/sandbox/sandbox.html?sample=renderer_generate_renderer
... View more
01-27-2016
01:18 PM
|
0
|
4
|
2043
|
|
POST
|
Erik, Not sure if this will help, but you mention your engineers and operation staff like the street view that Google provides. Could you use something like the WAB street view widget by Robert Scheitlin? Google Street View Widget 1.3 - 12/14/15 https://community.esri.com/external-link.jspa?url=http%3A%2F%2Fgis.calhouncounty.org%2FWAB%2FV1.3%2Fwidgets%2FStreetView%2F…
... View more
01-27-2016
12:16 PM
|
1
|
0
|
716
|
|
POST
|
Ken, The flex maps work, but it looks like Brian is having problems with the JS maps - the only one I found that did not go to a 404 was ArcGIS Web Application (Water Distribution Map).
... View more
01-27-2016
09:28 AM
|
0
|
1
|
2698
|
|
POST
|
Brian, Looking at one of your JS maps - ArcGIS Web Application - you're getting some console errors: {_ssl: undefined, code: 400, description: "", details: Array[0], httpCode: 400, log: undefined, message: "Item does n...", messageCode: "CONT_0001", name: "Error", number: 0} Can you confirm all of your services are available?
... View more
01-27-2016
09:14 AM
|
1
|
4
|
2698
|
|
POST
|
Are you just running out of space on C:\? If so, maybe this thread will help you to offload some of that to D:\
... View more
01-27-2016
07:53 AM
|
0
|
0
|
5317
|
|
POST
|
Glen, Once you create your featureLayer from your featureCollection, try something like this: var defaultSymbol = new SimpleMarkerSymbol().setStyle(SimpleMarkerSymbol.STYLE_CIRCLE);
defaultSymbol.setColor(new Color([255, 0, 0, 0.25]));
defaultSymbol.setSize("4.2");
var renderer = new UniqueValueRenderer(defaultSymbol, "symbolField");
renderer.addValue("0", new SimpleMarkerSymbol(SimpleMarkerSymbol.STYLE_CIRCLE, 6, new SimpleLineSymbol(SimpleLineSymbol.STYLE_SOLID, new Color([255, 0, 0, 0.75]), 1), new Color([255, 0, 0, 0.5])));
renderer.addValue("1", new SimpleMarkerSymbol(SimpleMarkerSymbol.STYLE_CIRCLE, 6, new SimpleLineSymbol(SimpleLineSymbol.STYLE_SOLID, new Color([0, 71, 171, 0.75]), 1), new Color([0, 71, 171, 0.5])));
featureLayer.setRenderer(renderer); In my example, I have a field named "symbolField" in a point featureLayer with either a "0" or "1" value. Based on these values, either a blue or red symbol renders in the map.
... View more
01-27-2016
07:00 AM
|
1
|
1
|
1330
|
|
POST
|
One thing to keep in mind if you're debugging proxy logs - unless it's an error, you will need to configure logLevel in the proxy.config - I don't think this is documented, at least I couldn't see it here: resource-proxy/README.md at master · Esri/resource-proxy · GitHub This should be using .NET trace, so the enums will be honored: Error - Output error-handling messages. Info - Output informational messages, warnings, and error-handling messages. Off - Output no tracing and debugging messages. Verbose - Output all debugging and tracing messages. Warning - Output warnings and error-handling messages. https://msdn.microsoft.com/en-us/library/system.diagnostics.tracelevel(v=vs.110).aspx E.g.: <ProxyConfig allowedReferers="*"
mustMatch="true"
logFile="proxylog.txt"
logLevel="Info">
</ProxyConfig> If you are having trouble allowing ASP.NET to write the log files, try this following the guide here: http://stackoverflow.com/questions/14653722/how-do-i-give-asp-net-permission-to-write-to-a-folder-in-windows-7 I was successful in giving full control of my local build's proxy folder to IIS_IUSRS on my local machine. I'm still having trouble figuring this out, but it seems almost certain that it's some encoding or unsafe chars issue...
... View more
01-25-2016
09:09 AM
|
0
|
0
|
3597
|
|
POST
|
I haven't quite tamped-down this issue, but I'm having trouble piping-in a SQL-sourced, secured layer into my map. Here's the code snippet: featureLayer = FeatureLayer(this._objLayers.MyLayer.attColl.URL.val, {
id: 'myLayer',
mode: FeatureLayer.MODE_ONDEMAND,
infoTemplate: popupTemplate,
outFields: ["field1", "field2", "field3", "field4", "FOOBAR", "field6"]
}); I've found that if I remove the column [FOOBAR], it seems to be added to the map without issue. If I add [FOOBAR], the map doesn't load anything at the normal, starting extent. No errors are reported in console - fiddler just shows an open request (no response). If I zoom-in and reduce extent, some features begin to show, but console reports the message: dojo.io.script error CancelError: Request canceled
"dojo.io.script error"
{
[functions]: ,
description: "Request canceled",
dojoType: "cancel",
log: undefined,
message: "Request canceled",
name: "CancelError",
response: { },
stack: undefined
} I tried debugging the proxy, but found nothing constructive - my assumption was that there were either unsafe chars, or maybe a length issue with the return. The latter didn't make sense, though, since the proxy should handle large requests. As a test, I adjusted the data in the SQL back-end and hard-coded a text value maxing-out the column width. This was piped-in without issue, so I'm beginning to think the proxy is rejecting some unsafe chars. Has anyone had a similar experience? I'm using the latest release version of the proxy from GitHub (1.1.0).
... View more
01-22-2016
02:49 PM
|
0
|
5
|
7099
|
|
POST
|
If you have discrete categories, you could use something like the Unique value renderer | ArcGIS API for JavaScript (UniqueValueRenderer | API Reference | ArcGIS API for JavaScript). With this renderer, you can assign a color value to each category value (three of them per your example). You can also set the transparency as well, and then set the outline to use the same color/transparency as the fill - depending on how many points you have, it may blend nicely into something like a pseudo heatmap. I used maps like this a few years back with some good success. There's also the new BlendRenderer - BlendRenderer - Lawrence, KS by age and population size | ArcGIS API for JavaScript But, I would definitely recommend looking at HeatmapRenderer again - HeatmapRenderer | API Reference | ArcGIS API for JavaScript - it just might work for you (see visualVariables).
... View more
01-22-2016
08:48 AM
|
0
|
0
|
1326
|
|
POST
|
Here's a JS fiddle sample to help: Tiled Map Service Example - JSFiddle UPDATED LINK
... View more
01-21-2016
10:09 AM
|
1
|
0
|
2702
|
|
POST
|
Basically, like so: var baseMapLayer = new esri.layers.ArcGISTiledMapServiceLayer("service URL goes here");
map.addLayer(baseMapLayer);
... View more
01-21-2016
09:55 AM
|
1
|
2
|
2702
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 06-16-2020 01:25 PM | |
| 1 | 03-20-2019 09:07 AM | |
| 2 | 07-31-2015 07:31 AM | |
| 1 | 09-14-2015 12:14 PM | |
| 1 | 05-12-2015 12:04 PM |
| Online Status |
Offline
|
| Date Last Visited |
07-27-2023
02:30 AM
|