|
POST
|
How do I add a related record field to a Report in ArcGIS Pro?
... View more
10-22-2020
01:04 PM
|
0
|
0
|
797
|
|
POST
|
Anthony McLaughlin Did you deploy the solution? If so to Enterprise or Arcgis Online? ArcGIS Online
... View more
10-20-2020
07:09 AM
|
0
|
0
|
4603
|
|
POST
|
RDCO GIS This is the script I used for that: https://community.esri.com/docs/DOC-10163-send-email-when-a-feature-is-added-to-an-arcgis-online-hosted-feature-service
... View more
10-08-2020
01:45 PM
|
1
|
4
|
4683
|
|
POST
|
Is it possible to have multiple sections of headings in a story map? I would like to have a heading for major sections. I would then like to have what would be subheadings that one can click on and zoom too like the headings of major sections. Thanks
... View more
10-08-2020
01:34 PM
|
1
|
3
|
2063
|
|
BLOG
|
Joseph Kerski I am interested in making a map like the quiz. I know that the application is custom but is there a copy of the code available? I would like to create something like this for the City I work for. Thank you for the blog.
... View more
10-07-2020
02:42 PM
|
2
|
0
|
5071
|
|
POST
|
Xander Bakker I thought that was the case. Thank you for confirming that.
... View more
10-06-2020
07:32 AM
|
1
|
0
|
9268
|
|
POST
|
Xander Bakker I am running 10.6.1 and was wondering if you can expand on your edit: " There are ways to get the related records using a Filter and the field the relationship is based upon." Thanks!
... View more
10-05-2020
03:58 PM
|
0
|
4
|
9268
|
|
POST
|
I was having issues publishing and I removed the domains and it published as expected.
... View more
09-30-2020
01:30 PM
|
0
|
0
|
7831
|
|
POST
|
Brad Cooper The only way I can think of is to make the polygon into a line. I don't think that is what you are looking for though.
... View more
09-30-2020
11:10 AM
|
0
|
0
|
3949
|
|
POST
|
I used ArcGIS pro to create the Code Violation | ArcGIS Solutions for Local Government on my Enterprise Portal. When I deployed it everything worked as expected. I did some configuring of the solution. I am not exactly sure how I broke the layer but I did. So I deleted everything that was created in the attempt to start over and re deploy the solution. Now when I go to deploy the solution I keep getting the same error. Failed to create Feature Service LandUseViolatiosn: Error: Relationship class with the same name does exist. (Error Code: 500) Failed to add Code Violation. Any suggestions how to fully delete the Relationship class? Or to bypass the error. I tried using a different account and in a different folder. I still get the same error. I have tried this :https://community.esri.com/thread/238191-how-to-deploy-a-solution-that-has-already-been-used Thanks!
... View more
09-29-2020
03:44 PM
|
0
|
0
|
821
|
|
POST
|
Brad Cooper <html>
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="initial-scale=1,maximum-scale=1,user-scalable=no"
/>
<title>
Floating polygon to see about only doing outline and not fill
</title>
<link
rel="stylesheet"
href="https://js.arcgis.com/4.16/esri/themes/light/main.css"
/>
<script src="https://js.arcgis.com/4.16/"></script>
<style>
html,
body,
#viewDiv {
padding: 0;
margin: 0;
height: 100%;
width: 100%;
}
</style>
<script>
require([
"esri/Map",
"esri/views/SceneView",
"esri/layers/GraphicsLayer",
"esri/Graphic"
], function (Map, SceneView, GraphicsLayer, Graphic) {
var map = new Map({
basemap: "hybrid"
});
var view = new SceneView({
container: "viewDiv",
map: map,
camera: {
// autocasts as new Camera()
position: {
// autocasts as new Point()
x: -0.17746710975334712,
y: 51.44543992422466,
z: 1266.7049653716385
},
heading: 0.34445102566290225,
tilt: 82.95536300536367
}
});
/*********************
* Add graphics layer
*********************/
var graphicsLayer = new GraphicsLayer();
map.add(graphicsLayer);
/***************************
* Add a 3D polygon graphic
***************************/
var polygon = {
type: "polygon", // autocasts as new Polygon()
rings: [
[-0.184, 51.48391],
[-0.184, 51.49091],
[-0.172, 51.49091],
[-0.172, 51.48391],
[-0.184, 51.48391]
]
};
var threeDfillSymbol2 = {
type: "polygon-3d", // autocasts as new PolygonSymbol3D()
symbolLayers: [
{
type: "extrude",
size: 800,
// autocasts as new ExtrudeSymbol3DLayer()
material: {
color: [67, 145, 244, 0.5] // orange
},
edges: {
// add edges of type solid
type: "solid",
color: "#AF6515" // dark orange
}
}
]};
var polygonGraphic = new Graphic({
geometry: polygon,
symbol: threeDfillSymbol2
});
graphicsLayer.add(polygonGraphic);
});
</script>
</head>
<body>
<div id="viewDiv"></div>
</body>
</html>
... View more
09-28-2020
03:36 PM
|
0
|
0
|
3949
|
|
POST
|
Brad Cooper Can you post your code or link to the site you are working on?
... View more
09-28-2020
12:20 PM
|
0
|
2
|
3949
|
|
POST
|
Brad Cooper It should be possible. Have you looked here: PolygonSymbol3D | ArcGIS API for JavaScript 4.16 Extrude building footprints based on real world heights | ArcGIS API for JavaScript 4.16
... View more
09-28-2020
10:55 AM
|
0
|
0
|
3949
|
|
POST
|
Calvin C Poulsen What you can do is have a feature layer that is used in Survey123 then create a view of that layer. Using the view layer you can restrict which layers are visible. Add the view of the layer to a map to share with whoever you want. Create hosted feature layer views—ArcGIS Online Help | Documentation
... View more
08-27-2020
06:34 AM
|
0
|
0
|
2528
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 08-28-2025 01:53 PM | |
| 1 | 08-24-2022 09:40 AM | |
| 1 | 07-19-2018 04:41 PM | |
| 1 | 04-05-2024 03:12 PM | |
| 1 | 07-04-2024 11:42 AM |