Skip to main content

 

I have a dataset containing Base64 pictures. I want to show the Base64 picture on the map. But when I try that, it shows the Base64 code instead of the picture. So it will not translate the Base64 code to a picture. However, when I use the Base64 code in the Studio, I can add the field containing the Base64 codes as the picture field in the popup configuration (see example picture).

Is there a solution for this?

 

Auto-translation 🪄

J'ai un ensemble de données contenant des images Base64. Je souhaite afficher l'image Base64 sur la carte. Mais lorsque j'essaie, le code Base64 s'affiche au lieu de l'image. Il ne traduira donc pas le code Base64 en image. Cependant, lorsque j'utilise le code Base64 dans le Studio, je peux ajouter le champ contenant les codes Base64 comme champ d'image dans la configuration contextuelle (voir l'image d'exemple). Existe-t-il une solution à ce problème ?

Hello,

Unfortunately, the maps outside the Studio don’t handle base64 images out of the box, and only support images added to the dataset directly as files.

One way to go further would be to customize entirely the tooltip using HTML and Widget code. You would then be able to directly use the content of the field (the base64 string) in an image tag, such as:

<img src="{{ record.fields.mybase64field }}">

 Alternatively, you could directly upload the images in your dataset, which would also unlock the “Images” tab in the dataset page. You’ll find more details here: https://userguide.opendatasoft.com/l/en/article/0pi0kp3en4

Hope this helps!

Auto-translation 🪄

Bonjour,Malheureusement, les cartes en dehors du Studio ne gèrent pas les images base64 par défaut et ne prennent en charge que les images ajoutées directement au jeu de données sous forme de fichiers.Une façon d'aller plus loin serait de personnaliser entièrement l'infobulle à l'aide de code HTML et Widget. Vous pourrez alors utiliser directement le contenu du champ (la chaîne base64) dans une balise d'image, telle que : Vous pouvez également télécharger directement les images de votre jeu de données, ce qui déverrouillerait également l'onglet « Images » dans la page du jeu de données. Vous trouverez plus de détails ici : https://userguide.opendatasoft.com/l/en/article/0pi0kp3en4J'espère que cela vous aidera !

This works perfectly fine! Thanks.

Auto-translation 🪄

Cela fonctionne parfaitement bien ! Merci.

Reply