I just started getting this error today for Google Maps:
Uncaught InvalidValueError: setIcon: not a string; and no url property; and no path property
I haven't changed any code in months.
The error is happening on this page:
Has anyone e across this before?
I just started getting this error today for Google Maps:
Uncaught InvalidValueError: setIcon: not a string; and no url property; and no path property
I haven't changed any code in months.
The error is happening on this page: http://gusmodern./pages/store-locator
Has anyone e across this before?
Share Improve this question asked Sep 9, 2014 at 17:35 Patrick BrownPatrick Brown 611 gold badge1 silver badge2 bronze badges 1-
1
start by loading the release-version of the maps-API(currently you load the experimental version). The URL of the V3-release-version is always
https://maps.googleapis./maps/api/js?v=3
– Dr.Molle Commented Sep 9, 2014 at 18:07
4 Answers
Reset to default 3I updated to the specific version reference https://maps.googleapis./maps/api/js?v=3&sensor=true and the error went away. I had this across multiple of my geolocation websites and mobile apps.
I got the same error just recently in some of my code. Thanks to another question in the past, I realized that when I set the markers I needed to make sure the variables I was bringing in for the anchor and scaled size were float numbers and not ing in as strings. This must be a new requirement with a recent update.
In my own code I changed
currentIcon = {
url: 'http://www.example./img/avatars/'+name+'.png',
origin: new google.maps.Point(0, 0),
anchor: new google.maps.Point(aw,ah),
scaledSize: new google.maps.Size(w,h)
};
to
currentIcon = {
url: 'http://www.example./img/avatars/'+name+'.png',
origin: new google.maps.Point(0, 0),
anchor: new google.maps.Point(parseFloat(aw),parseFloat(ah)),
scaledSize: new google.maps.Size(parseFloat(w),parseFloat(h))
};
and it now works fine for me.
Since two days I also experienced this problem. In my case I am setting a MarkerImage on the map with a null argument. This means that I am hiding markers on the map.
This worked before:
markers = new google.maps.Marker({
map: map,
position: results[0].geometry.location,
icon: new google.maps.MarkerImage(null)
});
Now this seems the solution:
markers = new google.maps.Marker({
map: map,
position: results[0].geometry.location
});
markers.setVisible(false);
Hope this helps. Good luck!
I had the same Problem with an icon as property of a MarkerWithLabel{}.
The Solution:
var nullIcon = { url: '', size: new google.maps.Size(0, 0), origin: new google.maps.Point(0, 0), anchor: new google.maps.Point(0, 0) };