How to add images to points using labels

2585
2
Jump to solution
03-01-2022 05:15 AM
Kubac01
New Contributor

Hello, I'm trying to figure out a way to add pictures to individual points using the individual photos (different png files) that are in the folder (if I change the photo in the folder, this photo would also change on the map).

Adding photos to individual points is done using custom symbols, but I would need something more simple than manually inserting individual photos as symbol to a point, because I have 1200 points. I was wondering if it is possible to display photos using Labels (attribute table).

I have:

- 1200 points connected to the coordinate system
- 1200 photos (landmarks) in the folder

An example output is attached. Please, give me an advice. Thank you

0 Kudos
1 Solution

Accepted Solutions
JohannesLindner
MVP Frequent Contributor
  • You can't do it with labels. You have to use symbology.
  • You need the image as byte data in the layer. That means you have to store it in the featureclass (field type BLOB).
  • That means it won't be dynamic. If you want to change images, you have to change them in the featureclass.

I outlined the process in these threads:

Labelling points with attached photos - Esri Community

Solved: Re: Can you import multiple geocoded png files as ... - Esri Community


Have a great day!
Johannes

View solution in original post

2 Replies
ABishop
MVP Regular Contributor
0 Kudos
JohannesLindner
MVP Frequent Contributor
  • You can't do it with labels. You have to use symbology.
  • You need the image as byte data in the layer. That means you have to store it in the featureclass (field type BLOB).
  • That means it won't be dynamic. If you want to change images, you have to change them in the featureclass.

I outlined the process in these threads:

Labelling points with attached photos - Esri Community

Solved: Re: Can you import multiple geocoded png files as ... - Esri Community


Have a great day!
Johannes