POST
|
Do any users know where the contactPoint object is stored in ArcGIS Online and which outputs in an item's metadata? I'm looking to modify the name and e-mail properties for ckan mapping purposes but haven't located it so far. Below is a snippet from a given open data item's data.json feed contactPoint: {
@type: "vcard:Contact",
fn: "name",
hasEmail: "mailto:e-mail"
},
... View more
07-24-2017
12:20 PM
|
0
|
2
|
1037
|
POST
|
Mike, The Python API gives you access to the REST API for your portals. You should be able to script out reports that will provide data similar to what are provided by the status dashboard. ArcGIS API for Python | ArcGIS for Developers
... View more
07-07-2017
09:58 AM
|
0
|
3
|
1376
|
POST
|
Ryan Nosek If you're going to be at the UC I'll be co-presenting on a web application that we've developed in-house at the City of Tempe using the Python and REST APIs which allows an AGOL/Portal admin to answer some of the questions that you're posing (e.g., which services are consumed in which web maps, which SDE layer is this web map consuming via ArcGIS Server, etc.) Thursday, 7/13, 8:30 - 9:45 am SDCC - 24 A Change Management for ArcGIS Platform for Local Government
... View more
07-06-2017
05:41 PM
|
3
|
1
|
1182
|
POST
|
JS Bin - Collaborative JavaScript Debugging Changing the basemap property from "hybrid" to "satellilte" should provide what you're looking for.
... View more
07-03-2017
10:02 AM
|
0
|
0
|
1789
|
POST
|
The code provided shows only one state based on a definition expression.
... View more
07-03-2017
09:11 AM
|
0
|
2
|
1789
|
POST
|
JS Bin - Collaborative JavaScript Debugging Does the jsbin link above render for you?
... View more
07-03-2017
09:04 AM
|
0
|
4
|
1789
|
POST
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no">
<title>FeatureLayer - 4.3</title>
<link rel="stylesheet" href="https://js.arcgis.com/4.3/esri/css/main.css">
<script src="https://js.arcgis.com/4.3/"></script>
<style>
html,
body,
#viewDiv {
padding: 0;
margin: 0;
height: 100%;
width: 100%;
}
</style>
<script>
require([
"esri/Map",
"esri/views/MapView",
"esri/layers/FeatureLayer",
"dojo/domReady!"
],
function(
Map, MapView,
FeatureLayer
) {
var map = new Map({
basemap: "hybrid"
});
var view = new MapView({
container: "viewDiv",
map: map,
center: [-120.007, 47.0379],
zoom: 7
});
/********************
* Add feature layer
********************/
// Carbon storage of trees in Warren Wilson College.
var featureLayer = new FeatureLayer({
url: "https://services.arcgis.com/P3ePLMYs2RVChkJx/ArcGIS/rest/services/USA_States_Generalized/FeatureServer/0",
outFields: ["*"],
definitionExpression: "STATE_NAME = 'Washington'"
});
map.add(featureLayer);
});
</script>
</head>
<body>
<div id="viewDiv"></div>
</body>
</html>
... View more
06-30-2017
05:03 PM
|
1
|
6
|
1790
|
POST
|
Emily - To configure the loading screen you will need to use Web AppBuilder Developer Edition. ESRI doesn't provide for customizing the login screen with the hosted version.
... View more
06-30-2017
02:45 PM
|
1
|
1
|
599
|
POST
|
Andrew - Check out this discussion from a few weeks ago. It should provide the URL parameters to have the legend open on page load. https://community.esri.com/message/694354-re-how-can-we-pin-the-legend-on-embeded-webmap?commentID=694354#comment-694354
... View more
06-28-2017
03:20 PM
|
1
|
0
|
466
|
POST
|
Katie Cullen Thanks for submitting that bug report. I'm getting an error when I attempt to send a direct message (Friends/Connection is required). Could I get an e-mail address to which I'll pass along our Customer Number?
... View more
06-21-2017
01:44 PM
|
0
|
0
|
679
|
POST
|
I have an embedded web map that lets the user search by address against two feature layers. In the default map viewer, when clicking on the dropdown to select a locator, the default or 'Active' locator is All. The dropdown would resemble the following: All ESRI World Geocoder Custom Geocoding Service Feature Layer 1 Feature Layer 2 Once I embed the map, however, the 'Active' locator becomes whichever layer has been configured first in the web map's settings. See below. All ESRI World Geocoder Custom Geocoding Service Feature Layer 1 Feature Layer 2 Is there a configuration or URL parameter that I'm overlooking on this? Or might this be a bug?
... View more
06-20-2017
02:24 PM
|
0
|
3
|
1235
|
POST
|
I don't believe that any of the stock widgets have direct URL link capability. The only idea that comes to mind is that you could use the About widget and in the body provide your users with an aliased link to the Survey123. It would require them opening the widget and then clicking (so an extra step on the user's part) or you could have the widget set to open when the page loads (thereby removing the extra click).
... View more
06-14-2017
11:30 AM
|
1
|
0
|
1487
|
POST
|
Scott, Have you considered adding the Survey URL as a link in the top nav next to the application title? Edit: after hitting submit I realized that only certain templates show attribute links in Web AppBuilder.
... View more
06-14-2017
10:07 AM
|
0
|
2
|
1487
|
POST
|
Meg, The following should return public content from a given portal without needing a username/password. from arcgis.gis import GIS
import csv
gis = GIS(input('Paste portal URL'))
items = gis.content.search('', max_items = 500)
fields = ['itemId', 'owner', 'type', 'title', 'created', 'modified', 'url', 'accessInformation']
with open('path', 'w', newline='') as outfile:
csvfile = csv.writer(outfile)
csvfile.writerow(fields)
for item in items:
row = [item.id, item.owner, item.type, item.title, item.created, item.modified, item.url, item.access]
csvfile.writerow(row)
print(outfile.name)
... View more
06-08-2017
06:24 PM
|
3
|
1
|
371
|
POST
|
Allen - I've encountered similar behavior with the NearMe widget when used in the same context (MyGovernmentServices). In our case we're serving out a mixture of point, polygon and linear features. Despite having all layers turned off, sometimes some of the layers will render on page load. In addition, I've found that turning off the widget automatically turns on all layers in the web map.
... View more
06-06-2017
03:19 PM
|
0
|
2
|
718
|
Title | Kudos | Posted |
---|---|---|
1 | 08-23-2017 03:25 PM | |
1 | 03-21-2018 09:13 AM | |
1 | 06-14-2017 11:30 AM | |
2 | 01-12-2021 08:57 AM | |
1 | 05-18-2016 01:02 PM |
Online Status |
Offline
|
Date Last Visited |
06-11-2024
05:24 PM
|