I have a PHP array (of arrays) of address date like this:
$date[0][lat] = 42.54
$date[0][lng] = -80.54
$date[0][title] = Business Name
$date[1][lat] = 41.54
$date[1][lng] = -81.54
$date[1][title] = Another Name
etc.
Is it possible to somehow pass this array of arrays to the google maps api to map as markers? Everything I seem to find online is either working with XML or working with data that is already a javascript array.