I am using view.goTo to go to an array of geometries (which happen to be the same as all the polygons drawn on a graphics layer `graphicsLayerParcelHighlight`)
The problem is that if I don't specify a zoom level, it's zoomed in too much. I want to back out around 2 or 3 zoom levels from whatever it would be otherwise.
I think I could work out how to expand each of the geometries in the array, but I'm not sure if that's the most sensible way. I'm a beginner.
view.whenLayerView(graphicsLayerParcelHighlight).then(() => {
view.goTo({
target: parcelGeometryArray,
zoom: 16
});
});