How to populate Google Map Marker info bubble

0
Hi Community, I added the Google Map Marker widget to my project so I can add more information to the info bubble (see first screenshot: https://appstore.home.mendix.com/link/app/80346/). The attribute that will be displayed in the marker info bubble should contain a string with structure: ''title|key:value|key:value.....'' What does this mean? Assume I have a Customer entity with attributes Address and Branche. How do I show the Address and Branche in the info bubble? Thanks, Erik
asked
3 answers
1

You should add an additional attribute to Customer called MarkerInfo. Now, whenever you save a customer, you should set the MarkerInfo attribute to something like this:

 

$Customer/Name + '|Address:' + $Customer/Address + '|Branche:' + $Customer/Branche

 

answered
0

Thanks Eric! I will implement and test it when an other error is solved as well. See here: https://forum.mendix.com/link/questions/89175. 

answered
0

Hmm.. You are using a widget which is based on my GoogleMapsCustomMarker widget but not my widget. So, contact that developer ;)

answered