|
DOC
|
This is really lame on Google's part. Shame on them. I'm sorry to see all of Robert's awesome work on this widget go to waste. I have a super basic widget that links out to Google Maps, Bing Maps, or Pictometry based on the center and zoom level of my map, I guess it will have to do. But this kind of sours the experience of using Google's product for me. Bing's Street Side actually has better coverage in my county than Street View does anyway.
... View more
09-01-2016
08:34 AM
|
1
|
0
|
8091
|
|
DOC
|
Robert, just a small request, I think it would be good if the address inspector tool became inactive when the widget is closed.
... View more
07-22-2016
11:32 AM
|
0
|
0
|
23854
|
|
IDEA
|
Hi Scott Prindle, This must have been a recent addition to Web AppBuilder, which is great. I think the current implementation is fine, at least there is some visual indication as to why a layer isn't being displayed and that should be easy enough to explain to users. For an example of how this feature could be made even better, though, check out the layer list in Robert Scheitlin's app: ArcGIS Web Application You'll see there's a little scale bar added to the check box when the layer is not within its visible range, just like in ArcMap. And ArcMap also makes the check mark itself a light gray color. If you could combine all of these features, it would be even better! Thanks, -Ryan
... View more
06-28-2016
09:04 AM
|
1
|
0
|
1697
|
|
POST
|
Thanks, Robert. Your site pretty much demonstrated exactly what I was wanting to see. I also forgot about (and didn't fully understand) the allowed referrers list, so thanks for mentioning that too.
... View more
06-17-2016
02:42 PM
|
0
|
0
|
2997
|
|
IDEA
|
Please enable the ability in ArcGIS Online to create labels for features in a dynamic stream service layer, just like you can with other feature layers.
... View more
06-17-2016
02:04 PM
|
14
|
3
|
3277
|
|
IDEA
|
Please enable the ability in ArcGIS Online to create labels for features in a dynamic stream service layer, just like you can with other feature layers.
... View more
06-17-2016
02:04 PM
|
15
|
9
|
3207
|
|
POST
|
Ok, thanks. I guess I was under the impression that the proxy would not be exposed externally. While trying to understand this, I was looking to find an example in somebody else's app where I could monitor the network activity and see a request made thru a proxy, and was not able to find an example of this.
... View more
06-16-2016
04:05 PM
|
0
|
7
|
2997
|
|
DOC
|
I have a layer that comes from a secured service, which is authenticated thru the proxy. The print widget won't work with this layer turned on. Perhaps this thread will be of help: https://community.esri.com/message/598929
... View more
06-16-2016
12:40 PM
|
0
|
0
|
7181
|
|
POST
|
Do any of you have a public / external facing app that is using the proxy? If so, in general terms, how did you configure it for this? For example, I have an app deployed on IIS that I access internally using http://gisserver/webapp and it uses the proxy at http://gisserver/DotNet/proxy.ashx. But I'm trying to make it available at something like http://www.webapp.mydomain.com and I'm having some trouble with including the proxy in the mix. I got some help from Esri that I am working on, but I was hoping to get any advice from somebody with practical experience with this.
... View more
06-16-2016
11:13 AM
|
1
|
9
|
6070
|
|
POST
|
Robert pointed out the map tips example - I use it for map tips in my app. I like the idea of using an "invisible" widget to invoke customizations instead of modifying the core app files.
... View more
06-06-2016
03:51 PM
|
2
|
0
|
1582
|
|
POST
|
That does sound like a reasonable inference, Ken. The only "checking mechanism" I've used (again, pointing out my beginner-ness) is logging information about the query results to the console and checking the response in Chrome's dev tools. It's a really simple query that I'm testing with a static value in the script and I haven't seen it fail to return results with my simplistic checks. In fact, even when view.goTo(resultsLayer.graphics) fails and I get the TypeError, I can still see that the geometry from the query results has been added to the map.
... View more
05-23-2016
04:23 PM
|
0
|
1
|
1410
|
|
POST
|
Ken Buja, I could not get this to work until I tried setting the query spatial reference to 4326. You know, I can't remember why I used 4326 when my intention was probably to use 102100, but it works either way. Maybe an important piece of information that I forgot to mention is that my own map service data is in State Plane. I'm just confused that I can sit here hitting refresh on the page and get the error maybe 50% of the time and have it work fine the rest of the time.
... View more
05-23-2016
10:02 AM
|
0
|
3
|
1410
|
|
POST
|
I haven't Robert, my data is in an SDE geodatabase (which I should have mentioned!) Thanks for the suggestion.
... View more
05-23-2016
09:26 AM
|
0
|
0
|
1410
|
|
POST
|
I'm working on a very simple map just as a learning exercise. I want it to select, highlight, and zoom to a defined parcel. It works, except that some of the time I get this error: "TypeError: Cannot read property 'wkid' of null". I get the error when the MapView.goTo() method tries to fire, but the graphics are visible on the map. I'm a beginner trying to learn, so consider that when checking out the code. My parcel data is not public so I swapped it out for King County data below, but oddly I can't get the error to occur with this other data. Any ideas about what's going on? require([
"esri/Map",
"esri/PopupTemplate",
"esri/views/MapView",
"esri/layers/MapImageLayer",
"esri/layers/GraphicsLayer",
"esri/symbols/SimpleFillSymbol",
"esri/tasks/QueryTask",
"esri/tasks/support/Query",
"dojo/_base/array",
"dojo/domReady!"
], function(Map, PopupTemplate, MapView, MapImageLayer, GraphicsLayer, SimpleFillSymbol, QueryTask, Query, arrayUtils) {
var parcelsMapService = MapImageLayer({
url: "http://gismaps.kingcounty.gov/arcgis/rest/services/Property/KingCo_PropertyInfo/MapServer",
sublayers: [
{
id: 2,
visible: true
}
]
});
var resultsLayer = new GraphicsLayer();
var map = new Map({
basemap: "topo",
layers: [parcelsMapService, resultsLayer]
});
var view = new MapView({
container: "viewDiv",
map: map,
zoom: 11,
center: [-122, 47.5]
});
var popupTemplate = PopupTemplate({
title: "Selected Parcel",
content: "{PIN}"
});
var queryTask = new QueryTask({
url: "http://gismaps.kingcounty.gov/arcgis/rest/services/Property/KingCo_PropertyInfo/MapServer/2"
});
var pinQuery = new Query({
returnGeometry: true,
outFields: ["*"],
outSpatialReference: {"wkid": 4326}
});
pinQuery.where = "PIN = '7666204876'";
queryTask.execute(pinQuery)
.then(getResults)
.then(addToLayer)
.then(goToLayer);
function getResults(response) {
var parcelResults = arrayUtils.map(response.features, function(feature) {
feature.symbol = new SimpleFillSymbol({
color: [255, 255, 0, 0.25],
style: "solid",
outline: {
color: [255, 255, 0],
width: 3
}
});
feature.popupTemplate = popupTemplate;
return feature;
});
return parcelResults;
}
function addToLayer(parcelResults) {
resultsLayer.addMany(parcelResults);
}
function goToLayer() {
view.goTo(resultsLayer.graphics);
}
});
... View more
05-20-2016
04:02 PM
|
0
|
7
|
5560
|
|
DOC
|
In light of this recent flurry of activity, I don't believe anyone has asked the most pertinent question: is there a link to some kind of "Buy Robert a Beer Fund"?
... View more
05-20-2016
08:47 AM
|
2
|
0
|
7180
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-07-2024 12:35 PM | |
| 1 | 07-26-2018 04:07 PM | |
| 1 | 02-09-2017 10:27 AM | |
| 2 | 02-07-2017 03:20 PM | |
| 1 | 02-29-2016 02:15 PM |
| Online Status |
Offline
|
| Date Last Visited |
07-01-2025
08:41 AM
|