Solved! Go to Solution.
Well you asked for circles of radius 500 miles, and that's exactly what it did. The problem is that the web mercator projection (used as the default by pretty much everyone) distorts areas the further away from the equator. In reality Greenland is not the bigger than the USA:
What you need to do is change the projection or basemap ito an equal area projection, that means the countries will be distorted, but polygons of equal area will be accurate.
There are demonstrations of how to solve this issue via the Javascript API in this YouTube video: Use Anything Other than Web Mercator!
John Nelson has also published some equal area basemaps, here's a global one: Equal Earth Global Vector Basemap
See this blog post for info on how they were created: Here Are Some Equal Area Projected Maps for ArcGIS Online (and how to make them)
Well you asked for circles of radius 500 miles, and that's exactly what it did. The problem is that the web mercator projection (used as the default by pretty much everyone) distorts areas the further away from the equator. In reality Greenland is not the bigger than the USA:
What you need to do is change the projection or basemap ito an equal area projection, that means the countries will be distorted, but polygons of equal area will be accurate.
There are demonstrations of how to solve this issue via the Javascript API in this YouTube video: Use Anything Other than Web Mercator!
John Nelson has also published some equal area basemaps, here's a global one: Equal Earth Global Vector Basemap
See this blog post for info on how they were created: Here Are Some Equal Area Projected Maps for ArcGIS Online (and how to make them)
If you make your features and layer use the Web Mercator coordinate system, then do planar proportionate symbols in metres then it should work. So project your points to Web Mercator first.
Blue is WGS84 (in latitude & longitude) with buffer of 800,000 metres (approx 500 miles) and red is WGS 1984 Web Mercator (auxiliary sphere) (in metres) with same buffer.
But just be aware that if you are using actual values to size the points differently to each other, this map will not be accurate away from the equator.