I'm trying to add a Marker to my Google Map and I can not get it to appear.
I'm calling a function, createMarkers(x, y) and passing two strings in from an aspx page.
Here's the createMarkers function:
function createMarkers(x, y) {
var latlng = new google.maps.LatLng(x, y);
console.log(latlng);
var marker = new google.maps.Marker({
position: latlng,
map: map,
title: "User location"
});
};
The marker doesn't appear on the map and no errors are printed into the console.
I've logged my variable latlng to the console to inspect and this is what it shows:
O
ab: 51.486091
cb: -0.05983800000001338
__proto__: O
I've looked through the google documentation on Markers here and the code I've got looks good enough to work.
One last thing, I've also tried adding the coordinates directly to the latlng variable instead of using my x & y parameters. This didn't work either.
I guess I'm missing something pretty obvious. As always any help will be greatly appreciated!
JA
