GeoJSON data being displayed on the Map with a renderer for a 3D Line Symbol as a Path.
I am assuming the elevation of the Map is using `absolute-height`, but my 4326 data is showing up still too far below the earth. From my understanding, the height I have is from the ellipsoid of the 4326 datum. So, why is it not getting displayed correctly on the ArcGIS Map?
const map = new ArcGISMap({
basemap: 'hybrid',
ground: 'world-elevation',
});
const view = new SceneView();
view.spatialReference = SpatialReference.WGS84;
const renderer = new SimpleRenderer({
symbol: new LineSymbol3D({
symbolLayers: [
new PathSymbol3DLayer({
profile: 'circle',
width: 0.508,
material: { color: [255, 75, 75] },
}),
],
}),
});
const geoJSONLayer = new GeoJSONLayer();
const url = "..."
geoJSONLayer.url = url;
geoJSONLayer.outFields = ['*'];
geoJSONLayer.renderer = renderer;
map.add(geoJSONLayer);