I am looping some markers and add a lat and long to them but I keep getting this error:
message
:
"not a LatLng or LatLngLiteral: not an Object"
name
:
"InvalidValueError"
And:
InvalidValueError: setPosition: not a LatLng or LatLngLiteral: in property lat: not a number
This is my loop:
var bedrijvenlijst = []; // new array
$.each( bedrijven, function( key, value ) {
// console.log( key + ": " + value.plaats );
console.log(value.lng);
bedrijvenlijst.push({
title : value.title,
image : 'bbvdw.jpg',
address : value.straat + ' ' + value.plaats,
position : {
lat : value.lat,
lng : value.lng
},
markerIcon : 'marker-green.png'
}); // new item added in array
});
When I console log the lng or lat is just shows as a normal number like:
4.23626
Why do I get this error? If I just type the coordinates myself in the loop it works fine, so what is different when using value.lat
and value.lng
? In the console it looks exactly the same as if I would type it myself.