I need assistance with customizing the description portion of the Google Maps marker description parameter.
"title": '<%# Eval("country") %>',
"lat": '<%# Eval("Latitude") %>',
"lng": '<%# Eval("Longitude") %>',
"description": 'Location : <%# Eval("City") %>,<%# Eval("country") %>,<%# Eval("Latitude") %>,<%# Eval("Longitude") %>'
For each data, I would like the following output displayed on the next line -
Location: Name of a city
Country : Name of a Country
Latitude:
Longitude:
Your help is greatly appreciated! Thank you!