Good Afternoon
I am trying to create a cross on my map using a SimpleMarkerSymbol. This will be attached to the mouse pointer and is to be used for quick eyeball measuring. As such I need it to be a specific size e.g. 10 meters. I would like it to be a graphic that I can add to my graphics layer.
However the SimpleMarkerSymbol only takes sizes in pixels and points. Pixels can vary depending on the display equipment and I can't find any documentation to help me understand how points would relate to meters.
For other things like the Circle (https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Circle.html) I can specify a radius in meters and then use a fill symbol to create a visual that matches the size. i.e. by specifying a radius of 5 meters and then add a Simple FillSymbol I end up with a visible 10 meter circle.
There isn't a cross equivalent of the circle (that I can find) and I can't provide a meter measurement to the only cross element I can find (the SimpleMarkerSymbol) so I'm at a bit of a loss as to how to achieve this. Should I be converting meters to points and if so what is the conversion rate? If not what is the recommended way to achieve this?
Any help or advice would be appreciated.