最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Google Maps Error: Uncaught InvalidValueError: setIcon: not a string; and no url property; and no path property - S

programmeradmin1浏览0评论

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
Add a ment  | 

4 Answers 4

Reset to default 3

I 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) };

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论