Sticky notes 🤔 or somethink similar

Habrá alguna manera de anotar dentro de shapespark y que luego otro usuario pueda ingresar y revisar esas notas?

Cómo anotar
Cómo guardar esas notas
Cómo ligarlas a un punto específico
Cómo cargarlas para qué uno mismo o cualquiera las vea después
Cómo modificar esa nota

Otros programas se han acercado a esta necesidad tomando una imagen que aparece inmediatamente en una ventana emergente y permitiendo anotaciones sobre ella, automáticamente se guarda la imagen con la nota y se genera un trigger con un símbolo de nota que se guarda al cerrar el recorrido. Luego si tu u otra persona vuelve al mismo punto y toca el trigger de nota, te salta la ventana emergente con la información que a su ves puedes editar.

Se podrá hacer algo similar?

Saludos
Jorge


Is there any way to annotate within shapespark and then another user can log in and review those notes?

How to annotate
How to save those notes
How to link them to a specific point
How to upload them for yourself or anyone else to see them later
How to modify that note

Other programs have approached this need by taking an image that appears immediately in a pop-up window and allowing annotations on it, automatically saving the image with the note and generating a trigger with a note symbol that is saved when you close the tour. Then if you or another person returns to the same point and touches the note trigger, the pop-up window appears with the information that you can edit.

Is it possible to do something similar?

Regards,
Jorge

We haven’t managed to polish and launch the meeting notes yet, but you can try what we already have by appending &meeting-notes at the end of the meeting URL, like this: https://3d-meeting.shapespark.com/lounge/#meeting-key=cGgSZxcCOr0I3MSU&meeting-notes

This allows to place notes in a 3D space while in a meeting:

image

When clicked, such a note allows to see and respond to comments:

The notes are visible to all the meeting participants. They are also kept until a meeting is deleted, so if you reenter the same meeting link the notes will be still there and you will be able to respond to them.

1 Like

Awesome feature! Very useful!

1 Like

Gracias por compartir
Excelente solución.

Me queda la duda de cómo copiar las notas y limpiar la pizarra de notas!? :thinking:

Thank you for sharing
Excellent solution.

I am left wondering how to copy the notes and clean the memo board!!!? :thinking:

Google Photos

It is not possible to remove the notes they stay until the meeting is deleted, so you need to create a new meeting to have a clean state.

It is likely because of your custom onNodeTypeClicked handler, that captures clicks in objects and prevents note placement from receiving information about these clicks:

viewer.onNodeTypeClicked(function (node, position, distance) {
    var nodeTypePath = [];
    while (node) {
        nodeTypePath.push(node.type);
        node = node.parent;
    }
    document.getElementById('distance').innerHTML = distance.toFixed(2);
    return true;
});

Try removing this custom handler or returning false from it and checks if this fixes the problem.

1 Like

Hi Jan,

It worked like a charm, thanks.

@jan ,

It has been more than a year :slight_smile: When do you plan to launch the note function?