Andrew,
THANK YOU!

Hopefully I could trouble you for an answer to a different question
that has also escaped me in trying to get this working...

When we define a marker var and function why is it they generally have
different declared values?

For instance I use these two to render the proper result in my map:
http://silvercrest.com/NoCal/masterx.php

var marker = createMarker
(point,label,name,city,state,website,phone,icontype,label);

function createMarker
(point,html,name,city,state,website,phone,icontype,label) {


The function requires an "html" value but more confusing is that the
var needs "label" twice.

If I remove the last one (label) the result is as shown here:
var marker = createMarker
(point,label,name,city,state,website,phone,icontype);
http://silvercrest.com/NoCal/master2.php
The custom markers fail to work and the values in the info window have
shifted to the point of displaying the icontype which did not have a
specific display value when the info window formatting was created.

And if I use remove the first one, the result is as shown here:
var marker = createMarker
(point,name,city,state,website,phone,icontype,label);
http://silvercrest.com/NoCal/master1.php
The address goes "undefined" in the info window.

I searched for various tutorials on the marker creation methods but
the answer to the createMarker functions syntax has escaped me. Any
tips or links to help me understand what's happening here?








Thanks again for solving the IE problem. Much appreciation on that
one!






On Feb 5, 9:37 am, "warden [Andrew Leach - Maps API Guru]"
<[email protected]> wrote:
>
> You have your Javascript inside a table. That means that IE doesn't
> calculate the map size correctly. Move your Javascript so that it's
> executed after the parser has reached the outermost </table> tag.
>
> Andrew
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Maps API" 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-API?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to