Сегодня столкнулся с такой же проблемой.

Нашел решение путем указания точной версии Google Maps API

Было ранее:

    var script = document.createElement("script");
    script.type = "text/javascript";
    script.src = "http://maps.google.com/maps/api/js?
&sensor=false&language=" + thisLang + "&callback=" + callbackFn;
    document.body.appendChild(script);

Я заменил на:

    var script = document.createElement("script");
    script.type = "text/javascript";
    script.src = "http://maps.google.com/maps/api/js?
v=3.4&sensor=false&language=" + thisLang + "&callback=" + callbackFn;
    document.body.appendChild(script);

ДОБАВИЛ: v=3.4 !!!

Ссылка тут: http://breadpoints.com/

On 20 сен, 15:17, RoyHB <[email protected]> wrote:
> I'm getting the same errors George - started today.
>
> On Sep 20, 9:31 pm, Andrinopoulos George <[email protected]> wrote:
>
>
>
> > Sorry about this.
>
> > I thought that many others would have the same problem today beacuse i
> > use the markerclusterer.js from the svn/trunk from google.
> > The problem is that when i zoom in the markercluster does not split into
> > smaller clusters.
> > The link ishttp://beach-profiles.gr/.
> > On the right menu press the first submenu, select the first option
> > "Σημεία Κολύμβησης".
>
> > On 20/09/2011 14:13, [email protected] wrote:
>
> > > On Sep 20, 12:04 am, Andrinopoulos George<[email protected]>  wrote:
> > >> Hi all,
>
> > >> today morning i noticed that marekrclusterer doesn't work as supposed to 
> > >> be.
> > >> I got the following error in the error console.
> > >> Any help?
> > > Any link to your map?
>
> > > READ THIS FIRST: Posting Guidelines
> > >http://groups.google.com/group/google-maps-js-api-v3/t/2b3f101fd509919e
>
> > >    -- Larry
>
> > >> Error: that.map_.mapTypes[that.map_.getMapTypeId()] is undefined
> > >> Source 
> > >> File:http://google-maps-utility-library-v3.googlecode.com/svn/trunk/marker...
> > >> Line: 164

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps JavaScript API v3" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.

Reply via email to