On 21 Jun., 14:05, Chad Killingsworth
<[email protected]> wrote:
> On this line:
> var koordinaten = new koordinaten(koordinatenDiv, map);
>
> Your variable is the same name as your constructor and it's being
> overwritten. Try:
> var koordinatenControl = new koordinaten(koordinatenDiv, map);
Yes, thank you!
Now I can see my mistake: I thought
var koordinaten = new koordinaten(koordinatenDiv, map);
would be similar to
var homeControl = new HomeControl(homeControlDiv, map);
but I didn't realize that homeControl is not the same as HomeControl.
Thanks a lot and HAND!
Harry
--
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.