[Google Maps API v3] Re: how to stylize rollover title?

2011-04-13 Thread thebit
Thank you very much.
Now, also your script appears simple tu use :)
Thanks.

On 12 Apr, 14:32, Esa  wrote:
> On Apr 12, 10:32 am, thebit  wrote:
>
> > Hello,
> > I founded this interesting InfoBox 
> > script:http://google-maps-utility-library-v3.googlecode.com/svn/trunk/infobo...
> > It's very simple tu use but I do not understand if there is a specific
> > page in which to ask some informations or if I can post here my
> > questions.
>
> That is a great script written by Garyhttp://www.garylittle.ca/
>
> You also asked how to use 
> tiptool.jshttp://koti.mbnet.fi/ojalesa/boundsbox/tiptool_trains.htm
>
> The essentials:
>
> 1] in html:
>  
> Of course you first have to upload the script in the folder
>
> 2] in JavaScript:
>
>     marker.attachTipTool(text);
>
> That will create the mouseover/mouseout listeners and a 200ms timer
>
> 3] in CSS something like:
>
> .tiptool: { border: 1px solid blue;
>              background-color: white; }

-- 
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 google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: how to stylize rollover title?

2011-04-12 Thread Esa


On Apr 12, 10:32 am, thebit  wrote:
> Hello,
> I founded this interesting InfoBox 
> script:http://google-maps-utility-library-v3.googlecode.com/svn/trunk/infobo...
> It's very simple tu use but I do not understand if there is a specific
> page in which to ask some informations or if I can post here my
> questions.

That is a great script written by Gary
http://www.garylittle.ca/

You also asked how to use tiptool.js
http://koti.mbnet.fi/ojalesa/boundsbox/tiptool_trains.htm

The essentials:

1] in html:
 
Of course you first have to upload the script in the folder

2] in JavaScript:

marker.attachTipTool(text);

That will create the mouseover/mouseout listeners and a 200ms timer

3] in CSS something like:

.tiptool: { border: 1px solid blue;
 background-color: white; }




-- 
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 google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: how to stylize rollover title?

2011-04-12 Thread thebit
Hello,
I founded this interesting InfoBox script:
http://google-maps-utility-library-v3.googlecode.com/svn/trunk/infobox/docs/reference.html
It's very simple tu use but I do not understand if there is a specific
page in which to ask some informations or if I can post here my
questions.

-- 
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 google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: how to stylize rollover title?

2011-04-11 Thread thebit
Hello,

I'm sorry but unluckly there is not any example of custom overlay of
div type. In the link posted by Esa there is only an example of an
image.
Please, can you give me a little example of a simple div witch appears
when mouse is over a marker?
I tried to utilise the Esa's tooltip script but I don't understand how
to use it.

Thank you very much.

-- 
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 google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: how to stylize rollover title?

2011-04-10 Thread Esa
Creating a custom overlay is explained in the documentation:
http://code.google.com/apis/maps/documentation/javascript/overlays.html#CustomOverlays

I don't think I'm going to write a stripped version of tiptools.js.
There are not many unused functions in the script. The filesize is
about 7kB with comments and unpacked. I cannot recommend any simpler
solution.

-- 
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 google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: how to stylize rollover title?

2011-04-10 Thread thebit
Hello,
thank you for your answer.
I wish to realise that without to utilise others/external scripts.
I saw you wrote a JS script (TipTool.js): could you tell me how to do
to append a simply div with title at right of the marker simply by
using google map API?
thank you in advance.

-- 
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 google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: how to stylize rollover title?

2011-04-10 Thread Esa
The tooltip that is defined by 'title' attribute, is generated by
browser. You cannot style that by css because that is not a HTML
element.

Making a tooltip  with OverlayView is not very complicated.
http://koti.mbnet.fi/ojalesa/boundsbox/tiptool_trains.htm

-- 
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 google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.