You can use this data structure, for example:
google.visualization.DataTable(); data.addColumn('number', 'Lat'); data.addColumn('number', 'Long'); data.addColumn('string','tooltip'); data.addColumn('number','Example'); data.addColumn({type:'string', role:'tooltip'}); data.addRows([[41.151636,-8.569336,'Portugal',0,'test PT']]); data.addRows([[ 39.059575,-98.789062,'USA',1,'test US']]);
Thus, the coordinates will not be displayed, and you will have 2 lines for a tooltip.
Check out the working example:
http://jsfiddle.net/cmoreira/q9Jzz/
source share