Google Maps: Multimarker not working
- by HyperDevil
Hi,
I want to plot several markers on my map.
Found some code on the internet, for that user it worked.
The array is generated by PHP, example: var ships = [['61','10.2']['60.5','10.1']];
My Javascript:
var map;
function load(ships) {
initialize();
createShips(ships);
}
function initialize() {
//build the map
var myLatlng = new…