[Google Maps API v3] Re: Displaying third party image tiles instead of google map

2012-03-08 Thread Rossko
> want to display third party map (image tiles) instead of google map. Your previous thread did get an answer http://groups.google.com/group/google-maps-js-api-v3/browse_thread/thread/b11c012f6c91d21e/bc667fc0b24627fc if that answer doesn't satisfy you, it might help to get something better if you

[Google Maps API v3] Displaying third party image tiles instead of google map

2012-03-08 Thread Mustafa646
In Google API v3, we normally display google map in div control. But i want to display third party map (image tiles) instead of google map. Is it possible? if yes, then i would like some link or code sample for that? -- You received this message because you are subscribed to the Google Groups "G

Re: [Google Maps API v3] Re: dblclick and click

2012-03-08 Thread Thomas Lefort
Yes sorry it was a bit of a stupid question indeed... I am stuck though as I need to have both events handled by the same element, which OK is arguably bad practice... I guess I will have to do with the timer solution. Pil wrote: On Mar 8, 9:22 am, Thomas Lefort wrote: BTW what is the r

[Google Maps API v3] Re: dblclick and click

2012-03-08 Thread Pil
On Mar 8, 9:22 am, Thomas Lefort wrote: > BTW what is the reason for triggering both events? The reason is a logical one: A double click consists of two clicks - using the same mouse button. So if you want to isolate a double click event from a single click event the first click of the double

[Google Maps API v3] dblclick and click

2012-03-08 Thread Thomas Lefort
Is there a clean way to handle the click/dbclick issue in v3? The "issue" arising when you want to have a different behaviour on both click and dblclick, as click is automatically triggered on a dblclick event. I have seen some rather unclean workarounds such as timers and else... looking for s