Hello all. struggling with something as simple as changing the size and color of point markers in JS 4x.
I want to use the google "Pin" style marker, which i found in the WebStyleSymbol class, but it seems to only render as gray and one size. Can i change those parameters?
Or, is there already an existing "Pin" style SimpleMarkerSymbol that i can more easily change those parameters.
this draws the "Pins" just fine on my mapview, but I need to change the size and color. Thanks!(see image)
let render = newSimpleMarkerSymbol
type: "simple", // autocasts as new SimpleRenderer()
symbol: {
type: "web-style", // autocasts as new WebStyleSymbol()
name: "tear-pin-2",
styleName: "Esri2DPointSymbolsStyle"
},