[Google Maps API v3] set style or class for marker option 'title'

2011-06-26 Thread RoyHB
I'd like to change color or weight or make other changes to the* tooltip*that 
is displayed when the marker
* title option* is displayed.
Can this be done?  

If I wrap the desired title text in a div or span it just displays the 
tags rather than use them.

see my lame attempt at this 
pagehttp://oceantracker.net/tracker/V4/titleTest.html

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-maps-js-api-v3/-/n9NxAUmNU8gJ.
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: set style or class for marker option 'title'

2011-06-26 Thread geocode...@gmail.com
On Jun 26, 6:34 am, RoyHB roy.bar...@gmail.com wrote:
 I'd like to change color or weight or make other changes to the* tooltip*that 
 is displayed when the marker
 * title option* is displayed.
 Can this be done?  

Not with normal tooltips, they are what they are.

See these pages from Mike Williams' (v2) tutorial for ideas on
creating custom tooltips:
http://econym.org.uk/gmap/tooltips2.htm
http://econym.org.uk/gmap/tooltips4.htm

As they were created for v2, they may not be directly applicable, but
the concepts should be.

  -- Larry


 If I wrap the desired title text in a div or span it just displays the
 tags rather than use them.

 see my lame attempt at this 
 pagehttp://oceantracker.net/tracker/V4/titleTest.html

-- 
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] Street View custom supertiles problem

2011-06-26 Thread Mike Solovev
Hi!

Problem description:
---
There are special low-resolution images in original Google Streetview 
called 
supertileshttp://cbk1.google.com/cbk?output=supertilecb_client=maps_svdm=1pm=1ph=1renderer=cubic,sphericalv=4panoid=o_53qor4UvfaNOse8hiJ-w.
 
It looks like that:

http://betacampus.com/360/supertile.jpg

These images are used as background while high-resolution tiles are loading:

http://betacampus.com/360/with_supertile.jpg

There are no supertiles in custom Google Streetview, so we can see there 
some problems with background. Here is Firefox:

http://betacampus.com/360/firefox_without_supertile.jpg

And Chrome:

http://betacampus.com/360/chrome_without_supertile.jpg

---
*Does it possible to use custom supertiles in Google Street View?*

Thanks,
Mike

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-maps-js-api-v3/-/7-nZ-eaTguUJ.
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] How to drag a google map marker onto a google map

2011-06-26 Thread The Net Duck
Hi,

I saw a tutorial on this a long time ago but can't seem to find it. I
would like to have a box (maybe a div) with a google map marker that I
drag into a google map. This marker should be draggable in the google
map.

How can I do this? Is there a tutorial for something like this
somewhere?

-- 
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 drag a google map marker onto a google map

2011-06-26 Thread The Net Duck
Hey just found this post

http://groups.google.com/group/google-maps-js-api-v3/browse_frm/thread/ee85aeb374f961cc/8183c71aa94aba40?lnk=gstq=drag+marker#8183c71aa94aba40

There is a comment that links to exactly what I was looking for. Hope
this helps someone.

On Jun 26, 3:42 pm, The Net Duck thenetd...@gmail.com wrote:
 Hi,

 I saw a tutorial on this a long time ago but can't seem to find it. I
 would like to have a box (maybe a div) with a google mapmarkerthat Idraginto 
 a google map. Thismarkershould be draggable in the google
 map.

 How can I do this? Is there a tutorial for something like this
 somewhere?

-- 
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.



Re: [Google Maps API v3] Street View custom supertiles problem

2011-06-26 Thread Marc Ridey
Hi Mike,

Can you supply a test link?

Regarding the tiles, have you created all the levels for your custom tiles
as explained in
http://code.google.com/apis/maps/documentation/javascript/services.html#CustomStreetView?
The tile at level 0 should be a single image providing the entire panorama
(what you call the supertile). Then level 1 should be 2*2 tiles, level 2
should be 4*4 tiles and so on.

Read a bit more here:
http://blog.mridey.com/2010/05/how-to-create-and-display-custom.html

Once you have all your ties and you supply a panoProvider (
http://code.google.com/apis/maps/documentation/javascript/reference.html#StreetViewPanoramaOptions),
your panorama should work just the same as the Google supplied Streetview
panoramas.

Marc

-- 
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.



Re: [Google Maps API v3] Street View custom supertiles problem

2011-06-26 Thread Jan Martin
Hi,

I run the site in question:
http://www.diy-streetview.com

Test-link:
http://www.diy-streetview.com/googleapi

The super tile is available:
http://s3.amazonaws.com/diy-20110418-googleformat2/000260/0-0-0.jpg

In Firefox, there is a right click Menu View page Info. 
On Media tab I see these tiles loaded:

http://s3.amazonaws.com/diy-20110418-googleformat2/000260/3-5-1.jpg
http://s3.amazonaws.com/diy-20110418-googleformat2/000260/3-5-2.jpg
http://s3.amazonaws.com/diy-20110418-googleformat2/000260/3-4-1.jpg
http://s3.amazonaws.com/diy-20110418-googleformat2/000260/3-4-2.jpg
http://s3.amazonaws.com/diy-20110418-googleformat2/000260/3-5-0.jpg
http://s3.amazonaws.com/diy-20110418-googleformat2/000260/3-4-0.jpg
http://s3.amazonaws.com/diy-20110418-googleformat2/000260/3-3-1.jpg
http://s3.amazonaws.com/diy-20110418-googleformat2/000260/3-3-0.jpg
http://s3.amazonaws.com/diy-20110418-googleformat2/000260/3-3-2.jpg
http://s3.amazonaws.com/diy-20110418-googleformat2/000260/3-2-1.jpg
http://s3.amazonaws.com/diy-20110418-googleformat2/000260/3-2-0.jpg
http://s3.amazonaws.com/diy-20110418-googleformat2/000260/3-2-2.jpg

Is this the expected behavior?

Jan

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-maps-js-api-v3/-/nmeo3eABKdQJ.
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 can I make the infomarkers close when I click elsewhere on the page or open a new one?

2011-06-26 Thread Mr P
this example does exactly what you want
http://www.ehoundplatform.com/api/1.0/demos/freehound-google2.html

basically you need to instantiate only 1 infowindow and then just move
its position and update contents

hope that helps

On Jun 26, 10:33 am, geocode...@gmail.com geocode...@gmail.com
wrote:
 On Jun 24, 8:28 pm, Phil Dawson taiwanadventu...@gmail.com wrote:

  Firstly, this is the site that I am working on

 http://www.central.taiwan-adventures.com/



  I have also attached the php file that I think is the problem.

  I bought this theme for Wordpress, and it is a complete nightmare.  

 Complain to the vendor.

  I have given up fixing most of the problems, but I really need to solve 
  this.  If
  you look at the site, you will see that when you click on a marker, the
  bubble will pop up.  However, if you click on another marker, the first
  bubble won't close.  

 http://gmaps-samples-v3.googlecode.com/svn/trunk/single-infowindow/si...

 from this search of 
 Samples:http://code.google.com/apis/maps/documentation/javascript/demogallery...

   -- Larry





  I've tried a few things, but without any success.  I am not a programmer,
  but I think that this should be not to difficult to fix...I hope.

   index (12).php
  10KViewDownload

-- 
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.