We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Today the extension contain just a few snippets
But this is just a small subset of all the Symbols.
It would be nice to have snippets for the following classes: (just the ones with the checkboxes; 21 in total)
Instead of just the properties:
{ type: "simple-marker", color: [255, 255, 255, 0.25], size: 12, style: "circle", outline: { width: 1, color: [255, 255, 255, 1] } } /* Snippet "SimpleMarkerSymbol": { "body": [ "{", "\ttype: \"simple-marker\",", "\tcolor: [255, 255, 255, 0.25],", "\tsize: 12,", "\tstyle: \"${1|circle,square,cross,x,diamond,triangle,path|}\",", "\toutline: {", "\t\twidth: 1,", "\t\tcolor: [255, 255, 255, 1]", "\t}", "}" ], "description": "Create a SimpleMarkerSymbol", "prefix": "simpleMarkerSymbol" } */
I would suggest something like:
new SimpleMarkerSymbol({ type: "simple-marker", // required only when autocasting color: [255, 255, 255, 0.25], size: 12, style: "circle", outline: { width: 1, color: [255, 255, 255, 1] } }) /* Snippet "": { "prefix": "", "body": [ "new SimpleMarkerSymbol({", "\ttype: \"simple-marker\", // required only when autocasting", "\tcolor: [255, 255, 255, 0.25],", "\tsize: 12,", "\tstyle: \"${1|circle,square,cross,x,diamond,triangle,path|}\",", "\toutline: {", "\t\twidth: 1,", "\t\tcolor: [255, 255, 255, 1]", "\t}", "})", ], "description": "" } */
Note: I think these are all symbols. Checking the symbol builder gallery I think I haven't left anything out... 😅
Does it make sense @kellyhutchins ? // cc: @RalucaNicola
The text was updated successfully, but these errors were encountered:
Yes 100% it would be fantastic to have snippets for all of the symbol classes
Sorry, something went wrong.
@hhkaos can you please assign this to me ?
Sure, done! 👍 😄
No branches or pull requests
Today the extension contain just a few snippets
But this is just a small subset of all the Symbols.
It would be nice to have snippets for the following classes: (just the ones with the checkboxes; 21 in total)
Instead of just the properties:
I would suggest something like:
Does it make sense @kellyhutchins ? // cc: @RalucaNicola
The text was updated successfully, but these errors were encountered: