Aller au contenu principal

Map Notes Interface

Commentaires

2 commentaires

  • Amanda Frech

    The out of the box “Add Location Note” command has 2 dialog windows.  As far as I know it's possible to skip the first one, but not the second.  If that's all you need, try replacing the “map.get-user-coordinates-input” operation in your example with a "sketching.capture-geometry" operation.

    Eg.

    [
       {
           "name": "system.repeat-action",
           "arguments": {
               "action": [
                   {
                       "name": "sketching.capture-geometry",
                       "arguments": {
                           "geometryType": [
                               "point"
                           ]
                       }
                   },
                   "tasks.identify",
                   {
                       "name": "map.create-note",
                       "arguments": {
                           "attributes": {
                               "slot": "top-start"
                           }
                       }
                   }
               ]
           }
       }
    ]
    0
  • Zorba Conlen

    Great. That works. Thanks Amanda.

    0

Vous devez vous connecter pour laisser un commentaire.