|
POST
|
I would start by reading this: http://ieeexplore.ieee.org/xpl/articleDetails.jsp?arnumber=7023325&filter%3DAND(p_IS_Number%3A7023305) Road Traffic Congestion Monitoring in Social Media with Hinge-Loss Markov Random Field
... View more
11-04-2015
11:05 AM
|
0
|
1
|
1303
|
|
POST
|
According to the API: The default behavior of a WMSLayer is to execute a WMS GetCapabilities request, which requires using a proxy page. See the Using the proxy page help topic for more details. An alternate approach is to pass a resourceInfo object into the constructor which does not require a GetCapabilities request. WMSLayer | API Reference | ArcGIS API for JavaScript
... View more
11-04-2015
11:00 AM
|
1
|
1
|
1367
|
|
POST
|
Not to my knowledge - the class doesn't exist in the JSAPI. Would something like this sample help? Add a topographic map with graphics | ArcGIS API for JavaScript
... View more
11-04-2015
10:57 AM
|
0
|
2
|
765
|
|
POST
|
Recently, I noticed the base maps I'm using are throwing script errors in the debugger: Here's the additional info: https://services.arcgisonline.com/ArcGIS/rest/services/Canvas/World_Light_Gray_Base/MapServer/tilemap/1/0/0/8/8?callback… Nothing looks odd in the JSON. Just to make sure, I validated in JSONLint - The JSON Validator. Any ideas as to what's going on? It doesn't appear to affect the app, aside from noise in the console.
... View more
10-23-2015
02:41 PM
|
0
|
3
|
3734
|
|
POST
|
Cool, I was thinking we may need to do something like this!
... View more
10-23-2015
12:25 PM
|
0
|
0
|
1839
|
|
POST
|
That being said, though, I wonder if you could get the extent from the query FeatureSet... FeatureSet Class I didn't see an extent property, however, so you may need some code to get the extent.
... View more
10-23-2015
12:16 PM
|
0
|
0
|
1839
|
|
POST
|
Looking at the API documentation, I don't see it as a listed method: QueryTask Class
... View more
10-23-2015
12:08 PM
|
0
|
1
|
1839
|
|
POST
|
You should be ok to add/edit data with any amount of named users - the application should scale on the cloud. If you end-up having issues with your 30 named users (as an example), you'd want to get in touch with Esri - there shouldn't be any reason it doesn't work well, as far as I am aware. That being said, I don't have personal experience to give you feedback in that regard. Something you should keep bookmarked, though, if you haven't already - the health dashboard: ArcGIS Online Health Dashboard If you end-up having issues, I'd check here first to make sure the system is not hiccuping.
... View more
10-23-2015
10:51 AM
|
2
|
1
|
2144
|
|
POST
|
As I understand things, if you need to develop a desktop app and stick with Microsoft products, use the .NET SDK. You can also develop native apps for mobile Windows phones; also, for the Windows app store. This guide might help: Design considerations—ArcGIS Runtime SDK for .NET | ArcGIS for Developers Unless you are targeting Windows phone, I would be inclined to recommend the JavaScript API. You can host this within an ASP.NET application, or just use straight HTML5/JavaScript. You can get also develop responsive apps using Bootstrap and ArcGIS. Additionally, keep in mind technologies like PhoneGap - PhoneGap | Home Write it once and deploy it everywhere! Esri/quickstart-map-phonegap · GitHub Depending on who you ask, some will say native apps are killing the web, or the web is killing native apps... pick your poison - no one can predict the future. I was a Silverlight developer 5 years ago; JavaScript was quant. Not so much these days; Silverlight is dead, JavaScript is king. I'm betting you'll get more mileage out of the JavaScript API.
... View more
10-22-2015
12:39 PM
|
0
|
0
|
918
|
|
POST
|
I'm not completely familiar with AGOL - we host ArcGIS Server within our enterprise and expose to the public - but setting to https only shouldn't prevent users from accessing services (unless https is not supported, that is, the service only allows http - this is bad practice) - they would just be accessing via https instead of http. On the other hand, piping in services over http may cause access issues, e.g. if the app is shown on a page with secured resources, the browser may block the http request because it would be serving mixed content. This is why, in our set-up, we only allow https.
... View more
10-22-2015
10:15 AM
|
0
|
1
|
1028
|
|
POST
|
On a related note, I recently ran into a scenario where I needed to use multiple versions of jQuery. If you ever run into this and experience issues, you can work around it by using noConflict: https://api.jquery.com/jquery.noconflict/ Just thought I'd give this information in case anyone finds it helpful!
... View more
10-22-2015
09:10 AM
|
1
|
1
|
2480
|
|
POST
|
Can you try just hitting it through the service URL with some test data? E.g. Here's the JSON string I'm using: {
"mapOptions" : {
"showAttribution" : true,
"extent" : {
"xmin" : -9580490.966797964,
"ymin" : 4540188.193338305,
"xmax" : -9493658.502665972,
"ymax" : 4678080.592364816,
"spatialReference" : {
"wkid" : 102100
}
},
"spatialReference" : {
"wkid" : 102100
},
"scale" : 577790.5542889922
},
"operationalLayers" : [{
"id" : "World_Ocean_Base_5811",
"title" : "World_Ocean_Base_5811",
"opacity" : 1,
"minScale" : 591657527.591555,
"maxScale" : 9027.977411,
"url" : "http://services.arcgisonline.com/arcgis/rest/services/Ocean/World_Ocean_Base/MapServer"
}, {
"id" : "LOJIC_LandRecords_Louisville_3326",
"title" : "LOJIC_LandRecords_Louisville",
"opacity" : 0.24,
"minScale" : 0,
"maxScale" : 0,
"url" : "http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Louisville/LOJIC_LandRecords_Louisville/MapServer",
"visibleLayers" : [0, 2]
}, {
"id" : "World_Ocean_Reference_1604",
"title" : "World_Ocean_Reference_1604",
"opacity" : 1,
"minScale" : 591657527.591555,
"maxScale" : 9027.977411,
"url" : "http://services.arcgisonline.com/arcgis/rest/services/Ocean/World_Ocean_Reference/MapServer"
}, {
"id" : "map_graphics",
"opacity" : 1,
"minScale" : 0,
"maxScale" : 0,
"featureCollection" : {
"layers" : []
}
}
],
"exportOptions" : {
"outputSize" : [800, 1100],
"dpi" : 96
},
"layoutOptions" : {
"titleText" : "Louisville – Land Records, Landscape PDF",
"scaleBarOptions" : {
"metricUnit" : "esriKilometers",
"metricLabel" : "km",
"nonMetricUnit" : "esriMiles",
"nonMetricLabel" : "mi"
},
"legendOptions" : {
"operationalLayers" : []
}
}
} This should output something like: {
"results": [
{
"paramName": "Output_File",
"dataType": "GPDataFile",
"value": {
"url": "https://yourGIS.server.com/arcgis/rest/directories/arcgisoutput/Utilities/PrintingTools_GPServer/_ags_hash.pdf"
}
}
],
"messages": [
]
} Which would be the output of your file. This should let you debug more easily - let me know what happens!
... View more
10-22-2015
07:30 AM
|
1
|
0
|
2397
|
|
POST
|
Generalizing can help quite a bit! It's easy to have millions of vertices for an arc where 100 could get the job done.
... View more
10-22-2015
07:05 AM
|
1
|
0
|
3851
|
|
POST
|
What version of ArcGIS Server are you using? There's quite a few reasons this could happen - basically, it's trying to access something it shouldn't (buffer overrun). Did you install on a clean machine - were there any other versions of ArcGIS on the machine before? Did you, by chance, install/update antivirus software recently?
... View more
10-22-2015
06:37 AM
|
0
|
2
|
2397
|
| 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
|