[Google Maps API v3] Re: Marker doesn't show on map - what is wrong? A real puzzler!

2011-03-04 Thread geocode...@gmail.com
On Mar 4, 8:53 pm, whistler  wrote:
> I don't understand how this could be trying to add the marker before
> the api script finished loadingThat just doesn't make sense to me.
>  I am really confused.


you are dynamically loading the script and then running your
initialize function as a callback

 function loadScript() {
var script = document.createElement("script");
script.type = "text/javascript";
script.src = "http://maps.google.com/maps/api/js?
sensor=false&callback=initialize";
document.body.appendChild(script);

That sends a request off to google's server for the script, when the
script finishes loading from the server, the "initialize callback
function runs.

In the meantime (before the script has loaded and initialize runs) you
call:

 var image = 'lightblue1.png';
var myLatLng = new google.maps.LatLng(19.517, -101.607);
var beachMarker = new google.maps.Marker({
position: myLatLng,
map: map,
icon: image
});

which fails because the google.maps namespace doesn't exist yet
because it hasn't loaded.


  -- Larry

-- 
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: Marker doesn't show on map - what is wrong? A real puzzler!

2011-03-04 Thread whistler
I don't understand how this could be trying to add the marker before the api 
script finished loadingThat just doesn't make sense to me.  I am really 
confused.

-- 
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] along the route question

2011-03-04 Thread nwsgeek
I am a newbie so please excuse any basic questions.
 
I am trying to replciate the feature on uship.com where they will find loads 
along the way from Location A to Location B. I am able to find product pick 
up locations around Location A and Location B within the proximity distance 
given by user, but i am unable to find Pick up locations between A and B and 
within the requested proximity.
 
Anyone can help me on what i shuld be doing or doing wrong? I would really 
appreciate it.
 
Best,
Don

-- 
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: Zoom in/out frequently cause null is null or not an object in IE

2011-03-04 Thread Peter
I have compared different examples. The following statement works in IE 

 

"'null', is null or not an object" error will not be found when you move 
mouse wheel quickly.


-- 
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: Select more than two map types?

2011-03-04 Thread Yves
Thanks, that did it. The satellite type was missing.

On 5 Mrz., 00:16, Esa  wrote:
> In controlOptions you have mapTypeIds:
>
> [ osm, Terrain, Roadmap, Hybrid ]
>
> Terrain and Hybrid maptypes seem to be kind of subtypes of Roadmap and
> Satellite now. You cannot have Terrain without Roadmap but Roadmap
> brings you also Terrain. And you cannot have Hybrid without Satellite
> but you get Hybrid with Satellite.
>
> I would try mapTypeIds
>
> [ osm, Roadmap, Satellite ]

-- 
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] Finding places around a location.

2011-03-04 Thread reaz
Hi,
Whenever we search for an address or GPS coordinate in Google Maps it
also shows some places around that location. For example, if we search
40.744038,-73.987641 it shows following list of places-

Museum of Sex
New York Life Building
Madison Square

Can I get these information by calling some method of Google Maps
JavaScript API?

Thanks,
~ Reaz

-- 
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: Select more than two map types?

2011-03-04 Thread Esa
In controlOptions you have mapTypeIds:

[ osm, Terrain, Roadmap, Hybrid ]

Terrain and Hybrid maptypes seem to be kind of subtypes of Roadmap and
Satellite now. You cannot have Terrain without Roadmap but Roadmap
brings you also Terrain. And you cannot have Hybrid without Satellite
but you get Hybrid with Satellite.

I would try mapTypeIds

[ osm, Roadmap, Satellite ]

-- 
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] GHierarchicalMapTypeControl for V3?

2011-03-04 Thread Yves
Are there any plans to support what was GHierarchicalMapTypeControl in
V2 for the current Maps API? A Google employee wrote they're working
on it, back in May 2010. Today I cannot find anything about it,
searching for several names and descriptions in two different
languages. Is it really gone for good?

-- 
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: Use regular UI when touch events are present

2011-03-04 Thread Esa
This is the list of supported browsers
http://code.google.com/apis/maps/faq.html#browsersupport

There are mostly WebKit browsers on the list.

-- 
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: Marker doesn't show on map - what is wrong? A real puzzler!

2011-03-04 Thread geocode...@gmail.com
On Mar 4, 12:41 pm, whistler  wrote:
> On this site, the marker called  lightblue1.png   does not show up on the
> map.  The coordinates are correct, and the marker image is available in the
> directory.  What could be wrong?
>
> bestofpatzcuaro.com 

I get a javascript error:
Line: 34
'google' is undefined.

Perhaps you are trying to add the marker to the map before the api
script finishes loading...

  -- Larry

-- 
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: marker.setZIndex seems to no longer work

2011-03-04 Thread Esa


On Mar 3, 4:07 am, Ben Appleton  wrote:

> Sorry, what do you mean by 'top'?

In some previous api version the z-index was equal to pixel value of
'top' position of the marker. That was clever. Actually my idea is
based on that. Relative z-index works only if the internal z-index
goes one step per pixel. However the z-index formula should be
published as it was with v2.


> Why should that be a function of the marker's height?

Right. Marker height is not a parameter in this issue. Forget it.



-- 
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: marker.setZIndex seems to no longer work

2011-03-04 Thread Esa


On Mar 3, 4:08 am, Ben Appleton  wrote:
> Draggable markers are not rendered in Canvas. This is only noticeable when
> there is a mix of non-draggable and draggable markers, in which case the
> draggable markers pop out in front of the other markers.

Actually that is quite nice behavior.

-- 
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: marker.setZIndex seems to no longer work

2011-03-04 Thread Esa


On Mar 3, 4:08 am, Ben Appleton  wrote:
> Draggable markers are not rendered in Canvas. This is only noticeable when
> there is a mix of non-draggable and draggable markers, in which case the
> draggable markers pop out in front of the other markers.

Actually that is quite nice behavior.

-- 
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: marker.setZIndex seems to no longer work

2011-03-04 Thread Esa


On Mar 3, 4:08 am, Ben Appleton  wrote:
> Draggable markers are not rendered in Canvas. This is only noticeable when
> there is a mix of non-draggable and draggable markers, in which case the
> draggable markers pop out in front of the other markers.

Actually that is quite nice behavior.

-- 
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] Select more than two map types?

2011-03-04 Thread Yves
I've added an OpenStreetMaps map type to my map, like they said it
would work on http://wiki.openstreetmap.org/wiki/Google_Maps_Example .
While the map type itself works fine, the type selection does not! I
can only select from OSM alone or OSM and Roadmap, but no longer from
the other types like Terrain or Hybrid. See my test code at
http://unclassified.de/tmp/maptest/osm.html . What went wrong? API v3
bug? There seem to be pages out there that look like v2 and have four
type buttons, but I couldn't find their JavaScript source code, e.g.
on http://www.youspots.com/ .

-- 
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] Marker doesn't show on map - what is wrong? A real puzzler!

2011-03-04 Thread whistler
On this site, the marker called  lightblue1.png   does not show up on the 
map.  The coordinates are correct, and the marker image is available in the 
directory.  What could be wrong?


bestofpatzcuaro.com 

-- 
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] Custom Routing

2011-03-04 Thread alexandrojv
Does anyone know of an open source example where it is possible to add 
custom routing to Google Maps, so that someone could make a floor plan of a 
building, and then get directions from one room to the other and such?

-- 
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: Google Map can't be dragged on Qt Webkit based browsers.

2011-03-04 Thread Holger
Looking for a fix/work-around, too. Will report if I find something.

-- 
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: Center map to different cordinates in a loop

2011-03-04 Thread Rossko
>     for (i = 0; i < lat_array.length; i++){
..
>         map.setCenter(new google.maps.LatLng(lat_array[i], lng_array[i]));
> alert("POSITION " + i);
..
>     }
...
> The alert shows that loop goes node by node, but the map is only
> displayed right after the loop has ended.

Yes, that is what I would expect to happen.  The map gets no browser
resource to update its display until after your loop has finished, so
you only see the effect of the last update.

You could use setTimeout to work through your list of centres.
Don't use that sleep() function, it won't work.

-- 
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: Invert Circle

2011-03-04 Thread Rossko
> is there a way to invert a cirlce? I want to darken the outside region
> of the circle and leave the inside in original colors.

I guess what you want is a very large polygon with a hole in it ; this
is possible, see
http://groups.google.com/group/google-maps-js-api-v3/search?group=google-maps-js-api-v3&q=polygon+hole

-- 
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: Error in Firefox: "Operation is not supported", Code 9

2011-03-04 Thread Yves
No. I had to load that page, click on the "English" in the top right
corner to view a list of languages, click on "English" again and read
the English translation of the page. It's got different contents,
including the chapter you were referring to from the beginning. Seems
the German translation which I'm automatically being redirected to
doesn't want me to know that.

Anyway, I found it out now and have successfully applied that method.
Now everything works fine with XHTML.

I have however modified the method so that the Maps API is loaded on
the DOMContentLoaded event, not the page load event, which is a bit
earlier. And it can load in parallel with images and such. I can't
notice a delay compared to the "synchronous" loading of the Maps API.


On 27 Feb., 12:38, Rossko  wrote:
> > Sorry, the page you liked to does not contain that anchor.
>
> Here is another way to view the same information, as already
> described :
> Visithttp://code.google.com/apis/maps/documentation/javascript/basics.html
> and look in the first section of text for a link to
>      Loading the API Asynchronously
> If that link doesn't work for you, because you are being served a
> special unique version of that page, you might have to scroll through
> the page looking for section headed "Loading the API Asynchronously"

-- 
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: Google Map can't be dragged on Qt Webkit based browsers.

2011-03-04 Thread Rossko
As an aside, while you Qt experts are here 
Help this chap out, he is floundering?
http://groups.google.com/group/google-maps-js-api-v3/browse_thread/thread/6ea7aa218e483dc5

-- 
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: Google Map can't be dragged on Qt Webkit based browsers.

2011-03-04 Thread Rossko
> So do we really need to recompile QtWebKit?

If it is misbehaving, yes.  See this post -
http://groups.google.com/group/google-maps-js-api-v3/browse_thread/thread/be4861805f6637c1/c31e3df7936d881c
I don't know much about it but I would have thought a browser that
reports it supports touch events, but doesn't really, is misbehaving?

-- 
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] Getting Index Error with Map crashing after zooming out

2011-03-04 Thread mceper
Thanks Andrew, yea I just noticed in the latest notes that they added some 
canvas marker drawing, so I specified loading the API version 3.3 and now 
the bug is gone. Maybe it's an issue with the new canvas implementation.

-Martin

-- 
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: Moving Markers

2011-03-04 Thread Raimonds Zarins
Im realy sorry, didnt see that it moves, yes I thought something like
that

On Mar 4, 8:59 pm, "geocode...@gmail.com" 
wrote:
> On Mar 4, 10:51 am, Raimonds Zarins  wrote:
>
> > I meant like from A to B marker moves like simulated driving/walking,
> > im a period of time.
>
> How is that different from what that page shows?  You want the marker
> to move slower?
>
>   -- Larry
>
>
>
> > On Mar 4, 7:31 pm, "geocode...@gmail.com" 
> > wrote:
>
> > > On Mar 4, 8:57 am, Raimonds Zarins  wrote:
>
> > > > Hello,
> > > > I was wondering if there is any nifty trick to make markers move from
> > > > location A to Location B, by the roads?
>
> > > You mean like 
> > > this?http://www.geocodezip.com/v3_animate_marker_directions.html
>
> > >   -- Larry
>
> > > > I dont need any actual code, if it
> > > > isnt written anyway, but some roadmarks, how to acomplish this.
>
> > > > Thank you
> > > > with pleasure,
> > > > Raimonds
> > > > Latvia- Hide quoted text -
>
> > - Show quoted text -

-- 
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: Moving Markers

2011-03-04 Thread geocode...@gmail.com
On Mar 4, 10:51 am, Raimonds Zarins  wrote:
> I meant like from A to B marker moves like simulated driving/walking,
> im a period of time.

How is that different from what that page shows?  You want the marker
to move slower?

  -- Larry

>
> On Mar 4, 7:31 pm, "geocode...@gmail.com" 
> wrote:
>
>
>
> > On Mar 4, 8:57 am, Raimonds Zarins  wrote:
>
> > > Hello,
> > > I was wondering if there is any nifty trick to make markers move from
> > > location A to Location B, by the roads?
>
> > You mean like 
> > this?http://www.geocodezip.com/v3_animate_marker_directions.html
>
> >   -- Larry
>
> > > I dont need any actual code, if it
> > > isnt written anyway, but some roadmarks, how to acomplish this.
>
> > > Thank you
> > > with pleasure,
> > > Raimonds
> > > Latvia- Hide quoted text -
>
> - Show quoted text -

-- 
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: Moving Markers

2011-03-04 Thread Raimonds Zarins
I meant like from A to B marker moves like simulated driving/walking,
im a period of time.

On Mar 4, 7:31 pm, "geocode...@gmail.com" 
wrote:
> On Mar 4, 8:57 am, Raimonds Zarins  wrote:
>
> > Hello,
> > I was wondering if there is any nifty trick to make markers move from
> > location A to Location B, by the roads?
>
> You mean like this?http://www.geocodezip.com/v3_animate_marker_directions.html
>
>   -- Larry
>
> > I dont need any actual code, if it
> > isnt written anyway, but some roadmarks, how to acomplish this.
>
> > Thank you
> > with pleasure,
> > Raimonds
> > Latvia

-- 
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: Google Map can't be dragged on Qt Webkit based browsers.

2011-03-04 Thread Ale_lipa
Same problem here.
Anyone solved this issue?
I've looked everywhere for the answer and only thing I found was same
post that you quoted
So do we really need to recompile QtWebKit?
There is no way to force google api to send "standard" UI or to stop
sending "touch" UI?

On Jan 29, 10:39 am, Thomas Mansencal 
wrote:
> Hello,
>
> I'm having an issue with Google Map and QtWebkit : Browsers using the Qt
> Webkit Port are unable to drag nor zoom into the Google Map. Apparently it's
> coming from Google Map side 
> :https://lists.webkit.org/pipermail/webkit-qt/2010-November/000974.html
>
> Looks like it's giving you a multi-touch version of the page.
>
> > Some quick testing shows that QtWebKit has
>
> document.documentElement.ontouchstart and friends, whereas Chromium,
>
> Firefox, Opera etc do not (at least not on my desktop machine.)
>
> Is there a way to deactivate multitouch directly from the google map api ?
>
> Thanks !
>
> KS

-- 
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: ProjectedOverlay animation

2011-03-04 Thread en4ce
how you change it ? like img.src = '' or div.innerHMTL = ''?

On 4 Mrz., 15:16, bernat  wrote:
> Hi folks,
>
> I'm working with the library ProjectedOverlay.
> I'm trying to create an animation and what I'm trying to do is change
> the src of the image contained by the div attribute.
> The ProjectOverlay contains a div and this div is the father of the
> image displayed by the overlay. I suppose that if I change the src of
> this image I could do an animation. Nothing seems to happen.
> I mean, I can change the src but the image does not change.
>
> Any ideas ?
>
> Does anybody know which is the best way to create an animation using
> the ProjectOverlay library ?
> Thanks in advance,
>
> Bernat

-- 
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: Moving Markers

2011-03-04 Thread geocode...@gmail.com
On Mar 4, 8:57 am, Raimonds Zarins  wrote:
> Hello,
> I was wondering if there is any nifty trick to make markers move from
> location A to Location B, by the roads?

You mean like this?
http://www.geocodezip.com/v3_animate_marker_directions.html

  -- Larry

> I dont need any actual code, if it
> isnt written anyway, but some roadmarks, how to acomplish this.
>
> Thank you
> with pleasure,
> Raimonds
> Latvia

-- 
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 save geolocations?

2011-03-04 Thread en4ce
maybe try to write the values with jquery into the hidden field, i
dont see an error on these lines, but i guess its a timing problem,
you can try to set a "setTimeOut", 200ms should be ok and test if the
vaules are then in the hidden field as well...

On 4 Mrz., 17:31, Soluphia  wrote:
> Thanks for your assistence, Paulo!!
> No change ... although the values are present.
>
> On Mar 4, 10:54 am, Paulo Fernandes 
> wrote:
>
>
>
>
>
>
>
> > try to do that
>
> > document.getElementById("alerts").value = pos;
> > alert( document.getElementById("alerts").value );
>
> > Paulo 
> > Fernandeshttp://www.google.com/profiles/paulofernandesjrhttp://twitter.com/pau...
> > +55 11 9797-5974
>
> > On Fri, Mar 4, 2011 at 12:33 PM, Soluphia  wrote:
> > > I apologize for posting code..
>
> > > Here is a link to my problem. Thanks for your patience!
>
> > >http://www.dorothy-lewis-griffith.com/A-GoogleMapMarkerSetTransferFor...
>
> > > --
> > > 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.

-- 
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: Map not showing in IE/FF but fine in Chrome

2011-03-04 Thread Franz
Hi there,

set the parameter for top and left to zero, guess thats the problem

and set the parameter "absolute"

greetings, franz


On 4 Mrz., 16:57, Rossko  wrote:
> > I am struggling to find what this is dependent on,
> > there's obviously something in there it's wanting to be 100% 'of', but
> > I am struggling to find it :-(
>
> Your map  is inside a , which has no size, which is inside a
>  which has no size.

-- 
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] Moving Markers

2011-03-04 Thread Raimonds Zarins
Hello,
I was wondering if there is any nifty trick to make markers move from 
location A to Location B, by the roads? I dont need any actual code, if it 
isnt written anyway, but some roadmarks, how to acomplish this.
 
Thank you
with pleasure,
Raimonds
Latvia

-- 
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 save geolocations?

2011-03-04 Thread Soluphia
Thanks for your assistence, Paulo!!
No change ... although the values are present.

On Mar 4, 10:54 am, Paulo Fernandes 
wrote:
> try to do that
>
> document.getElementById("alerts").value = pos;
> alert( document.getElementById("alerts").value );
>
> Paulo 
> Fernandeshttp://www.google.com/profiles/paulofernandesjrhttp://twitter.com/paulofernandesj
> +55 11 9797-5974
>
>
>
>
>
>
>
> On Fri, Mar 4, 2011 at 12:33 PM, Soluphia  wrote:
> > I apologize for posting code..
>
> > Here is a link to my problem. Thanks for your patience!
>
> >http://www.dorothy-lewis-griffith.com/A-GoogleMapMarkerSetTransferFor...
>
> > --
> > 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.

-- 
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] Getting Index Error with Map crashing after zooming out

2011-03-04 Thread Andrew Leach
On 4 March 2011 16:10, mceper  wrote:
> Hello,
> We're seeing an odd javascript bug triggered within the maps API and not
> sure what could be causing it.
> Go here: http://www.projectnoah.org/spottings/5412271 and try to zoom out
> the map on the right. On Chrome, Safari, and Firefox the map freezes up.
> On Chrome while loading it throws the error: INDEX_SIZE_ERR: DOM Exception 1
> Any ideas would be appreciated!

This would appear to be relevant:
http://stackoverflow.com/questions/2923564/uncaught-error-index-size-err

...but I can't help with the fix. I *guess* the API is falling foul of
Chrome's Javascript speed and it ends up trying to do something with
an image which is not completely loaded.

-- 
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] Getting Index Error with Map crashing after zooming out

2011-03-04 Thread mceper
Hello,

We're seeing an odd javascript bug triggered within the maps API and not 
sure what could be causing it.
Go here: http://www.projectnoah.org/spottings/5412271 and try to zoom out 
the map on the right. On Chrome, Safari, and Firefox the map freezes up.

On Chrome while loading it throws the error: INDEX_SIZE_ERR: DOM Exception 1

Any ideas would be appreciated!
Thanks,
Martin

-- 
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: ProjectedOverlay animation

2011-03-04 Thread bernat
I created N overlays, one for each image and I animate changing the
opacity.


On Mar 4, 9:16 am, bernat  wrote:
> Hi folks,
>
> I'm working with the library ProjectedOverlay.
> I'm trying to create an animation and what I'm trying to do is change
> the src of the image contained by the div attribute.
> The ProjectOverlay contains a div and this div is the father of the
> image displayed by the overlay. I suppose that if I change the src of
> this image I could do an animation. Nothing seems to happen.
> I mean, I can change the src but the image does not change.
>
> Any ideas ?
>
> Does anybody know which is the best way to create an animation using
> the ProjectOverlay library ?
> Thanks in advance,
>
> Bernat

-- 
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: Map not showing in IE/FF but fine in Chrome

2011-03-04 Thread Rossko
> I am struggling to find what this is dependent on,
> there's obviously something in there it's wanting to be 100% 'of', but
> I am struggling to find it :-(

Your map  is inside a , which has no size, which is inside a
 which has no size.

-- 
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] Re: How to save geolocations?

2011-03-04 Thread Paulo Fernandes
try to do that

document.getElementById("alerts").value = pos;
alert( document.getElementById("alerts").value );



Paulo Fernandes
http://www.google.com/profiles/paulofernandesjr
http://twitter.com/paulofernandesj
+55 11 9797-5974



On Fri, Mar 4, 2011 at 12:33 PM, Soluphia  wrote:

> I apologize for posting code..
>
> Here is a link to my problem. Thanks for your patience!
>
>
> http://www.dorothy-lewis-griffith.com/A-GoogleMapMarkerSetTransferFormField.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.
>
>

-- 
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 save geolocations?

2011-03-04 Thread Soluphia
I apologize for posting code..

Here is a link to my problem. Thanks for your patience!

http://www.dorothy-lewis-griffith.com/A-GoogleMapMarkerSetTransferFormField.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.



[Google Maps API v3] Re: Transfer of newly placed marker into hidden form field.

2011-03-04 Thread Soluphia
Sorry Andrew!

Here is the link:

http://www.dorothy-lewis-griffith.com/A-GoogleMapMarkerSetTransferFormField.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.



[Google Maps API v3] Re: Map not showing in IE/FF but fine in Chrome

2011-03-04 Thread Noel


> You could try giving your map div a non-zero size to find out (I do
> think it is your problem)


Thanks for your response.  If I set the map div to a fixed value (i.e.
500px x 500px), it shows the map.  However if I set the map div to
100% it does not.  I am struggling to find what this is dependent on,
there's obviously something in there it's wanting to be 100% 'of', but
I am struggling to find it :-(

-- 
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] Transfer of newly placed marker into hidden form field.

2011-03-04 Thread Andrew Leach
On 4 March 2011 15:07, Soluphia  wrote:
> I tried to find the solution with the Google documentation but I could
> not find anything that could help me.

Please don't start a new thread. Just reply to your existing answers.

You do need to provide a link, not code listings.

-- 
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: can i show only particular 'style id' set?

2011-03-04 Thread geocode...@gmail.com
On Mar 3, 4:53 am, Christopher Watson 
wrote:
> hey larry,
>
> thanks for getting back with this.
>
> Only just got round to looking at the example of categories and its
> code to see what its doing etc and how i can try to adapt it.

Proof of concept categories from kml styleId:
http://www.geocodezip.com/geoxml3_test/v3_geoxml3_kmltest_categories_linktoA.html?filename=http://www.geocodezip.com/geoxml3_test/nzhistory_net_nzmap_locations_kml.xml

(not particularly well tested)

  -- Larry

>
> I only quickly glanced at my kml/xml file and saw the style id that
> the google map kml gives the markers. i assumed the colours only
> had one id number. dont get why google gives them different.
>
> so yes i'll sort the xml file out definetly, if you could work on a
> version and use, i guess, the most common id numbers already there
> to categories the colours that would be brilliant.
>
> when we click to hide we will se which arent and make it easy
> enough to change them in the xml code.
>
> erm... the categories example is the perfect function, and i was going to
> have ago at pulling the appropriate style id for the 'bottom bar' to just
> associate the correct colour pin.
>
> this was first because i thought in the categories example, it adjusts the
> sidebar links to that of what markers are on show/selected/active, brill!
> can it do the same to my bottom bar, because if they have the appropriate
> style id attached, the data is there to differentiate, my logic. (can
> appreciate my functionality design view isnt probably as easy to render out
> in code, dont have enough knowledge of the code to realise difficulty)
>
> so thats why that was first.
>
> i looked at the xml in the categories example to see if easily adaptable
> (was quick i must add, got pulled away, my initial thought was how can i
> adapt the lat= lng= to my  where that info is contained.
>
> but looking from design, is it hard to switch* type**=**"checkbox"?*
>
> Theatres:  onclick="boxclick(this,'theatre')"
>
> to just using (know this wouldn't work, this is my code thinking)  src="javascript:'

[Google Maps API v3] ProjectedOverlay animation

2011-03-04 Thread bernat
Hi folks,

I'm working with the library ProjectedOverlay.
I'm trying to create an animation and what I'm trying to do is change
the src of the image contained by the div attribute.
The ProjectOverlay contains a div and this div is the father of the
image displayed by the overlay. I suppose that if I change the src of
this image I could do an animation. Nothing seems to happen.
I mean, I can change the src but the image does not change.

Any ideas ?

Does anybody know which is the best way to create an animation using
the ProjectOverlay library ?
Thanks in advance,

Bernat



-- 
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: Having troubles with path

2011-03-04 Thread Rick Donohoe
Oh apologies!! Try it now...

Rick

-- 
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: Having troubles with path

2011-03-04 Thread Rossko
No idea what you've done now, can't view source in the browser here,
but this might help with the previous problem
http://www.google.com/search?q=javascript+iterate+sparse+array

-- 
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: loading javascript maps api

2011-03-04 Thread Rossko
>  I tried it. But it gives "document is not defined".

That's right.  There probably is no 'document' object in your non-
browser environment.

If you somehow managed to load the Maps API in your non-browser
environment, what are you expecting it do?  It creates maps in the DOM
of a browser, after all.

-- 
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: Map not showing in IE/FF but fine in Chrome

2011-03-04 Thread Rossko
> I am wondering if it is something simple (I had major issues getting
> the map to show 100% wide and high in Chrome, and had to add the tag
> into a couple of places).

You could try giving your map div a non-zero size to find out (I do
think it is your problem)

-- 
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: Having troubles with path

2011-03-04 Thread Rick Donohoe
Ok so i assume you have seen the behaviour when it is commented out, Ive 
uncommented it and now nothing is shown at all on the map.

You may notice Ive still comented out where I add to the array at numbers 
16, 32, 33, 34 as that was still causing an issue. Annoyingly...

When this is finalised I want the results to show up below the map (which 
are within the map bounds) and I want the user to hover over the results, 
and when they do the poly line is shown on the map, but only whilst they 
hover over. If the user clicks on the results, they are passed to a seperate 
page where the route is properly displayed and the bounds are appropiate to 
the route. (This is working already with the show route links below the 
map).

This of course may be completely irrelevant, but figured I'd share it with 
you if you are offering design decisions/ideas.

Thanks Rossko,

Rick

-- 
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: Best ways to stay current with API changes

2011-03-04 Thread Rossko
> Is there a recommended practice for making sure code remains supported
> through API changes? It's irritating to have a bunch of commands be
> deprecated if I want to make use of new ones.

I think you'd use only methods documented in the reference material.
They don't often get deprecated ; what were you having trouble with?

-- 
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] Best ways to stay current with API changes

2011-03-04 Thread Paulo Fernandes
You can sign this list
This is the most trustful place

Paulo Fernandes
http://www.google.com/profiles/paulofernandesjr
http://twitter.com/paulofernandesj
+55 11 9797-5974



On Fri, Mar 4, 2011 at 1:04 AM, Marc Dunham  wrote:

> Is there a recommended practice for making sure code remains supported
> through API changes? It's irritating to have a bunch of commands be
> deprecated if I want to make use of new ones.
>
> Thanks!
>
> --
> 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.
>

-- 
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] update a route

2011-03-04 Thread Paulo Fernandes
Hi
You can redraw the first route adding in destination the new two points

Paulo Fernandes
http://www.google.com/profiles/paulofernandesjr
http://twitter.com/paulofernandesj
+55 11 9797-5974



On Fri, Mar 4, 2011 at 4:00 AM, Ash  wrote:

> hi friends,
>
>
>
>I have already drawn a route using
> directionsDisplay.setMap(map); and a source and destination.and if i
> want continue this route(with another two ponits,one,the previous
> destination(ie the new source ) and the next points(the new
> destination).Is there any way to update this new route to the previous
> route.
>
> help
> thanks
>
> --
> 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.
>
>

-- 
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: Reference Error: google is not defined

2011-03-04 Thread geocode...@gmail.com
On Mar 4, 1:36 am, Karthick  wrote:
> @Rossko: does it mean it is loaded in webpage only?
>                   is it possible to load maps javascript API on non
> web browser environment?

It may be possible, but is against the terms of use.

  -- Larry


>
>
>
>
>
>
>
>
>
> On Thu, Mar 3, 2011 at 3:35 PM, Rossko  wrote:
> > > I am trying to execute javascript through Qt script.
>
> > For questions about how to use Qt, try here
> >http://www.qtcentre.org/forum.php
>
> > The maps javascript is normally loaded with 

Re: [Google Maps API v3] Possible to use your own map with coordinates ?

2011-03-04 Thread Paulo Fernandes
Hi

You can use the overlays

http://code.google.com/apis/maps/documentation/javascript/overlays.html#Drawing


Paulo Fernandes
http://www.google.com/profiles/paulofernandesjr
http://twitter.com/paulofernandesj
+55 11 9797-5974



On Fri, Mar 4, 2011 at 5:12 AM, Voxel  wrote:

> I've been searching the API guide but haven't found an answer yet.
>
> Is it possible to use your own image, like a image of a country, and
> place it on top of the original country so you still get the correct
> coordinates (lat and longitude) when placing a marker?
>
>
> --
> 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.
>
>

-- 
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] Map not showing in IE/FF but fine in Chrome

2011-03-04 Thread Noel
Hi all

I have been working on a new version of my site, and been testing in
Chrome (which turns out to have been a bit of a mistake!).

The site is now coming on nicely, but I have just discovered that in
IE8 and FF4 it does not show the map.  I have run a debugger but not
found any errors, which makes me think the map script is not even
loading!

My URL is http://beta.5vanmap.com, script is \js\map.js.

I am wondering if it is something simple (I had major issues getting
the map to show 100% wide and high in Chrome, and had to add the tag
into a couple of places).

Thanks and regards
Noel

-- 
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: Having troubles with path

2011-03-04 Thread Rossko
> Any other suggestions?

Show us an example with the behaviour you describe ; the removal code
you are on about is currently commented out at http://www.my-walk.com/index.php

You might like to think about the consequences of using what we could
call sparse arrays, where only some indexes are populated, and what
happens when you iterate through the array with a simple for-loop.
That's not a maps issue, its basic javascript.

-- 
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: Markers from postcode data

2011-03-04 Thread Jean-Baptiste Crestot
Hi,

makers can only be added on a map with lat/long ; so yes, you have to
convert your adresses with the geocode api.

Here the link to the concerned documentation :
http://code.google.com/intl/fr-FR/apis/maps/documentation/geocoding/

On 3 mar, 15:03, Cole Henley  wrote:
> Hi
>
> We have a CMS featuring membership data one field of which is Postcode
> information (UK).
> Is there a way to pass this postcode information (via XML) in the same
> way you would long|lat information or does this need to be converted
> first (at either the server or client side)?
>
> Regards
>
> Cole

-- 
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] Possible to use your own map with coordinates ?

2011-03-04 Thread Voxel
I've been searching the API guide but haven't found an answer yet.

Is it possible to use your own image, like a image of a country, and
place it on top of the original country so you still get the correct
coordinates (lat and longitude) when placing a marker?


-- 
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: Having troubles with path

2011-03-04 Thread Rick Donohoe
I want to keep all the lines saved in pathArray, so I don't want to clear it 
at any time.

I just want to distinguish between when to show the poly lines within 
pathArray, and when not to (conditional to their bounds).

Does that make sense Rossko? 

I figured this method would cycle through and remove all overlays withing 
the array, then the method after would cycle through it a second time and 
add any within the bounds back onto the map. The for loop we have discussed 
displays nothing on the map, and the code dosen't reach the second part to 
add the route on the map(which it could reach fine before).

Any other suggestions?

Cheers,

Rick

-- 
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: Use regular UI when touch events are present

2011-03-04 Thread Ugo Riboni
> You can read more about default UI 
> here:http://code.google.com/apis/maps/documentation/javascript/controls.ht...
> If there is something lacking, consider filing a feature request on the issue 
> tracker.
> To me, it sounds like the browser is broken if it exposes touch events when 
> there really aren't any.
> Also of interest may be the list of supported 
> browsers:http://code.google.com/apis/maps/faq.html#browsersupport

Hi Chris,
thanks for your answer.
I'll see if I can get this fixed in WebKit, it seems like a more
proper solution especially considering Webkit isn't officially
supported by Google.
Cheers,
--
Ugo

-- 
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: Event propagation when clicking on overlapping polygons

2011-03-04 Thread bratliff
On Feb 23, 6:28 am, Darkray16  wrote:
> Hello,
>
> The situation is:
> There are overlapping polygons, some shapes will overlap onto other shapes.
> When I click on an area that has overlapping shapes, I want ALL of the
> polygon overlays to receive the click event.
> Basically, I want to know all of the shapes that I clicked on.
>
> Does anyone know how I would do this?
>
> Currently, I have only event listeners on each shape, and when I click on an
> area with two polygons overlapping, only one of the polygon fires off a
> click event, I think the one on top.  I need to know about the polygon
> underneath also.
>
> Thanks for any help, this one has me stumped and I've done searching and
> came up with nothing.

Except for Internet Explorer, PolyCluster event listeners receive all
overlapped polys in an array of poly names.  Unfortunately, I do not
have a good overlapped polys demo.

See:

http://www.polylib.us/polycluster/airports

for a light weight markers demo.  The event listeners are essentially
the same.

-- 
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] Re: Reference Error: google is not defined

2011-03-04 Thread Karthick
@Rossko: does it mean it is loaded in webpage only?
  is it possible to load maps javascript API on non web
browser environment?


On Thu, Mar 3, 2011 at 3:35 PM, Rossko  wrote:

> > I am trying to execute javascript through Qt script.
>
> For questions about how to use Qt, try here
> http://www.qtcentre.org/forum.php
>
> The maps javascript is normally loaded with 

Re: [Google Maps API v3] Re: can i display the marker from 'style id = ' in xml, alongside the placemark using associated 'styleUrl'?

2011-03-04 Thread Christopher Watson
yeah, perfect, can they be displayed in the bottom bar effect we achived
too? the sidebar is for the categories displays that you showed me.

just having a look at the source code now to see where they're being called.



On Fri, Mar 4, 2011 at 6:55 AM, geocode...@gmail.com
wrote:

> On Feb 28, 4:53 pm, Christopher Watson 
> wrote:
> > hey larry, thanks so much for your help. i knew i'd probably have to copy
> > paste the address details, even if i didnt make this interactive
> > 'bottombar?'
> >
> > got your example working beautifully here:
> http://visualisationmagazine.com/lacreativemaptest.htm
> >
> > for a while i didnt realise to view source when i kept copy pasting xml
> from
> > directly as displayed in the browser (reminder for anyone who is as silly
> as
> > me to do so).
> >
> > again larry, it might be quicky and dirty, but seems to be
> > sustaining refresh's now. thanks. so interactive, just how i'd
> > imagined.
> >
> > *
> > so a few little snags/tweaks if anyone can help.* first 2 below
> > would be luxuries if easy, other two are integral to the design and
> > look (tedious
> > designer here)
> >
> >1. can i display the marker from 'style id = ' alongside the
> > placemark name in bottombar columns using associated 'styleUrl'?
>
> Like this?
>
> http://www.geocodezip.com/geoxml3_test/v3_geoxml3_kmltest_icon_linkto.html?filename=http://www.geocodezip.com/geoxml3_test/visualisationmagazine_com_lacreativemap_kml.xml
>
>  -- Larry
> >
> >1. also can i show only particular 'style id' set. so e.g. i have red
> >markers, yellow markers and blue markers. can i click blue so to hide
> red
> >and yellow?
> >
> > would really enhance the usability of the map when there are so many
> > markers.
> >
> > i have managed to use projected overlay eg here;
> http://www.geocodezip.com/geoxml3_test/ProjectedOverlayTest.html
> >
> > and make it work here:
> http://visualisationmagazine.com/lacreativemaptest.htmyay!
> >
> >1. but, does it automatically load semi transparent? 50% opacity 'ish?
> >can it load fully as 100%, just a picture laid over the top like i did
> here:
> >http://visualisationmagazine.com/lacreativemap.htm
> >
> > lastly,
> >
> >1. why oh why, can i not stop it zooming out to like 4, when i've set
> to
> >12, and even put listeners into set 12?
> >
> >   var zoomLevel;
> >   google.maps.event.addListener(map, 'zoom_changed', function() {
> > zoomLevel = map.getZoom();
> > if (zoomLevel == 0) {
> >   map.setZoom(12);
> > }
> >   });
> >
> > i know i posted a lot, and trust me i trowl through examples at
> > geocodezip.com. i did one code line paste at a time doing the projected
> > overlay example through trial error and make it work.
> >
> > hope people can help.
> >
> > many thanks again larry, and everyone.
> >
> > please help, its so close.
> >
> > ps apologies for any typos or if it isnt clear, i do check it, its late.
> > need a few z's
>
> --
> 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.
>
>

-- 
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: polyline editor

2011-03-04 Thread webbirder
http://www.birdtheme.org/useful/v3tool.html

On 3 Mar, 21:57, cjs  wrote:
> Can anyone point me to a v3 map editor that is similar to the one here
>
> http://gmaps-samples.googlecode.com/svn/trunk/poly/mymapstoolbar.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] Re: Function Closures

2011-03-04 Thread bratliff
With a centralized event listener, you can deal with multiple hits on
overlapping markers.

See:

http://www.polylib.us/polycluster/airports

If you move the mouse over several intersecting markers, all will be
passed back to the event listener in an array of marker names.  The
same thing works for polys.  I saw a request for it about a month ago.

-- 
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: Having troubles with path

2011-03-04 Thread Rossko
> for (i=0; i     {
>         pathArray[i].setMap(null);                            
>     }

That should work.
Don't forget that you need to clear pathArray[] afterwards, else you
will add all the old lines back on to the map again when you add the
new ones.

-- 
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] Gmap Problem In Internet Explorer

2011-03-04 Thread Shankar G
Hi,

Im am using Gmap in one of dupal project. I am using getdirection module to 
get the girection. This works fine for me in Firefox, Crome and Opera, But 
in IE7 and IE8 I am getting the error message 'unspecified error 
http://maps.gstatic.com/intl/sv_se/mapfiles/api-3/0/36/main.jsin
 line 33'. Can any one help me. whats the problem.

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