I found some code on Codepen to add pointers to a Google map. Currently, it's using default markers but I want to change them to my own. However, I'm not sure where in the code to make this update. Any examples or guidance would be appreciated.
You can find the code here: http://jsfiddle.net/MSLRr/
Each pointer is added using the following code:
var data = [ // map data
{
'id':1,
'content':'Hello my name is marker, I\'m from Google',
'position': {
'lat':55.86423,
'lng':-4.251
}
},
{
'id':2,
'content':'I am the content of this infobox. Wow, what a text.<br><br><a href="#">The good thing is: Tags are also possible</a>',
'position': {
'lat':55.874,
'lng':-4.25
}
},
]