Re: [Google Maps API v3] Re: Error on line 8 while panning around in street view...

2010-06-15 Thread Ben Appleton
On Wed, Jun 16, 2010 at 2:48 PM, William  wrote:

> On Jun 16, 1:44 pm, Chad Killingsworth
>  wrote:
> > That's a pretty specific bug.
>
> yeah it's something due to numerical instability.
>
> looking at the code before the bug, there is
>
> b=cos(f)
> f=sin(f)
>
> which produces the values are b=-1 and f=2.2e-16 (not zero)
>
> the bearing is close to zero (true north), but the cos function
> returns a value of -1 as if the angle was zero, but the sin function
> returns a small value.
>
> the matrix is a skew matrix for VML, so maybe the matrix eigenvalue
> has to be *exactly* 1?  Not sure what the tolerance would be.
>

I don't think so.  I believe you can use skew matrices for scaling, in which
case the eigenvalue is not 1 but s^2 (if scaling by "s" in x and y).

What was the value of e?  I wonder if the matrix must be invertible.

Or maybe it's a floating point underflow problem?


Floating point rounding explains why the cosine evaluates to -1, since the
cosine is -sqrt(1 - (2.2e-16)^2) = -1 + (2.2e-16)^2 / 2 = -1 + 2.4e-32 which
cannot be distinguished from -1 in double-precision floating point.  But
underflow refers to a value being rounded to 0; I don't see that.


> --
> 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...@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...@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: Stupid Question about Scrollbars

2010-06-15 Thread Leonid Rozenblyum
I see no scrollbars there, tried IE & Chrome.

BTW, there are javascript exceptions there, the console object that is
used is undefined (probably you use Firebug. But then for IE you shoud
connect Firebug Lite 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...@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] Removing overlays containing event listeners, memory leak or no?

2010-06-15 Thread Leonid Rozenblyum
Google Map API doesn't clearly states what will be if:
a) create marker for the map;
b) attach event listener to the marker
c) setMap(null) - so delete marker from map;
d) remove reference to the marker from internal array.

Will it be memory leak here because event listener was connected to
the marker?
Should we preserve listener during add, and remove it as well to
ensure memory is really cleared or setMap(null) does this as well?

-- 
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...@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] Stupid Question about Scrollbars

2010-06-15 Thread Tyler
I have a map at http://www.pineapple.la/map.html  and when I click on
the content the infowindow pops up but I don't want it to have any
scrollbars.  It is even ok if it goes off the map.  Is there a way to
do this?  Please spell it out for me I am really confused.

Thanks alot,
Tyler

-- 
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...@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: Can't Load Map from https in IE8

2010-06-15 Thread Luke Mahé
Hi Robert,

Can you supply a link or your code so I can see your code.

Note that HTTPS will only work if you are a Maps Premier client.

Thanks

-- Luke


On Wed, Jun 16, 2010 at 7:52 AM, Robert  wrote:

> Hi Luke,
>
> I am having the same problem.  I still do not understand why this
> works perfectly in firefox and chrome but not IE...I do not get
> any security warnings or any prompts.
>
> Again, this only happens if the website is hosted on a secure location
> (HTTPS).  If the website, with no code changes is moved from a secured
> (HTTPS) to unsecure (HTTP with no S) location everything works.  I am
> not trying to access the google service through https.
>
> I get a single javascript error  'google' is undefined which
> occurs on line 40
>geocoder = new google.maps.Geocoder();
>
> Again, this works fine if the website is unsecured (http) for all
> browsers and works fine secured (HTTPS) for FireFox and Chrome.
>
> --
> 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...@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...@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: Bike Layer, I don't think its working

2010-06-15 Thread Taylor Dewey
I was having the same issue. If the script tag is referenced without
specifying a version, the bicyclingLayer does not render. If you add
&v=3.0 like william suggested, it renders.

Here is the script tag I am using now, which works as expected:

http://maps.google.com/maps/api/js?
sensor=false&v=3.0">

-- 
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...@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 on line 8 while panning around in street view...

2010-06-15 Thread William
On Jun 16, 1:44 pm, Chad Killingsworth
 wrote:
> That's a pretty specific bug.

yeah it's something due to numerical instability.

looking at the code before the bug, there is

b=cos(f)
f=sin(f)

which produces the values are b=-1 and f=2.2e-16 (not zero)

the bearing is close to zero (true north), but the cos function
returns a value of -1 as if the angle was zero, but the sin function
returns a small value.

the matrix is a skew matrix for VML, so maybe the matrix eigenvalue
has to be *exactly* 1?  Not sure what the tolerance would be.

Or maybe it's a floating point underflow 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...@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] New Release: 2010/06/17

2010-06-15 Thread Luke (Google Employee)
Hey everyone!

We've recently pushed out a new version of the API.  See the list of
changes below:
http://code.google.com/p/gmaps-api-issues/wiki/JavascriptMapsAPIv3Changelog

Changed Issues:
- Issue 2346: Option to disable smooth animation

Noticeable changes:
- Fixed marker flicker bug
- InfoWindow domready event triggering has been improved
- DirectionsRoute.bounds is now exposed

Please test and provide feedback.

Thanks!

- Luke

-- 
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...@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 on line 8 while panning around in street view...

2010-06-15 Thread Chad Killingsworth
Nicely done. That's a pretty specific bug.

Chad Killingsworth

On Jun 15, 9:46 pm, "William ."  wrote:
> On Wed, Jun 16, 2010 at 7:55 AM, Nathan Raley  wrote:
> > Another area to check would be along highway 142  or S Jackson from E Hull
> > St heading Northbound crossing highway 14.  You'll get the same error
> > panning across there in the South direction and North direction.
>
> here's a minimal example which shows the error in IE8
>
> http://www.william-map.com/20100616/2/map.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...@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: Error on line 8 while panning around in street view...

2010-06-15 Thread William .
On Wed, Jun 16, 2010 at 7:55 AM, Nathan Raley  wrote:

> Another area to check would be along highway 142  or S Jackson from E Hull
> St heading Northbound crossing highway 14.  You'll get the same error
> panning across there in the South direction and North direction.


here's a minimal example which shows the error in IE8

http://www.william-map.com/20100616/2/map.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...@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: Markers and Event Removal

2010-06-15 Thread Ben Appleton
Thanks for the feedback.  We're thinking about the best way to listen for
events on lots of overlays.

On Sat, Jun 12, 2010 at 6:04 AM, Nathan Raley  wrote:

> Yes, I very much miss this capability to return the overlay.  Since its
> removal I have had to create an event listener for each marker I want to
> manipulate when before I could have a single listener for the map click
> event and just check the overlay and overlaylatlng to retrieve the overlay
> and its latlng.  Having both of these back or just the overlay would be very
> benefitial.
>
>
> On Fri, Jun 11, 2010 at 2:57 PM, Berwyn wrote:
>
>>
>> Ben
>>
>> Is there any chance we could get the overlay parameter in the map
>> click event back, so one can set up a single event listener?
>>
>> or perhaps a method that would return the div for 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...@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...@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...@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 does one add a Marker to both the regular map and the custom panorama?

2010-06-15 Thread Ben Appleton
Yeah, we need to put together some really good MVC docs and examples.

On Wed, Jun 16, 2010 at 11:34 AM, Chad Killingsworth <
chadkillingswo...@missouristate.edu> wrote:

> I should have guessed that this was already done - just not
> documented.
>
> Thanks Ben!
>
> Chad Killingsworth
>
> On Jun 15, 6:53 pm, Ben Appleton  wrote:
> > You should be able to write simply:
> >
> > svMarker.bindTo('position', mapMarker);
> >
> > This will ensure that svMarker and mapMarker share the same 'position'
> > property, including updating when one or the other is dragged.  Is this
> what
> > you mean?
> >
> > - Ben
> >
> >
> >
> > On Wed, Jun 16, 2010 at 1:12 AM, Nathan Raley 
> wrote:
> > > Yea, it was a bit of a pain but I added the markers I needed by
> creating
> > > basically a carbon copy of the other marker.  Then I added events on
> the
> > > drag and dragend to set the position of the marker on the other object,
> be
> > > it the map or the pano.  Really wish it was easier to tie these two
> together
> > > than this.  It wasn't necessarily hard but it does require the user to
> > > create double the amount of markers they would previously be required
> to
> > > create.
> >
> > > Even if we could get the marker manager to handle the markers inside
> the
> > > panorama that would be another solution to this as I could add the same
> > > marker to 2 different marker managers.  Either solution would be great.
> >
> > > On Tue, Jun 15, 2010 at 8:57 AM, Chad Killingsworth <
> > > chadkillingswo...@missouristate.edu> wrote:
> >
> > >> I've seen several use cases come up with this sort of thing. I wonder
> > >> if we ask nicely if the Marker object can expose position as an
> > >> MVCObject property? Then you could bind and be notified of position
> > >> changes.
> >
> > >> I've filed a feature request for this:
> > >>http://code.google.com/p/gmaps-api-issues/issues/detail?id=2491
> > >> You can star it to both vote for it and track its progress.
> >
> > >> Chad Killingsworth
> >
> > >> On Jun 15, 7:21 am, Cartolog - Map Experts  wrote:
> > >> > Hi,
> > >> > When the drag event of one marker is triggered, move the second
> marker
> > >> > by setting its new position
> >
> > >> > Itay
> > >> > Cartolog - Map Expertshttp://www.cartolog.com
> >
> > >> > On Jun 14, 9:12 pm, nlraley  wrote:
> >
> > >> > > Is there anyway to link the marker dragging between the 2 markers
> if I
> > >> > > create 2 separate markers?
> >
> > >> > > On Jun 14, 8:12 am, Nathan Raley  wrote:
> >
> > >> > > > Okay, let me make sure I have this right, so as long as I am
> > >> specifying that
> > >> > > > the street view panorama is to be placed in a div that I have
> > >> defined I have
> > >> > > > to create 2 separate markers in order to have them placed both
> on
> > >> the
> > >> > > > regular map and on the street view?
> >
> > >> > > > On Fri, Jun 11, 2010 at 5:46 PM, Marc Ridey 
> > >> wrote:
> > >> > > > > You currently need to create two markers.
> >
> > >> > > > > On Sat, Jun 12, 2010 at 5:55 AM, Nathan Raley <
> > >> nlrale...@gmail.com> wrote:
> >
> > >> > > > >> I have a custom panorama and I'd like to add my markers to
> both
> > >> the map
> > >> > > > >> and the pano, the pano is in a div on the bottom right of the
> map
> > >> so they
> > >> > > > >> are both viewable at the same time, however; once I set the
> map
> > >> for the
> > >> > > > >> markers to the pano it takes them off the map.  How can I
> > >> accomplish both?
> > >> > > > >>  Or do I just need to create 2 markers for each marker I want
> to
> > >> add to
> > >> > > > >> both?
> >
> > >> > > > >> Thanks,
> > >> > > > >> Nathan
> >
> > >> > > > >> --
> > >> > > > >> 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...@googlegroups.com.
> > >> > > > >> To unsubscribe from this group, send email to
> > >> > > > >> google-maps-js-api-v3+unsubscr...@googlegroups.com unsubscr...@googlegroups.com> > >> 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...@googlegroups.com.
> > >> > > > > To unsubscribe from this group, send email to
> > >> > > > > google-maps-js-api-v3+unsubscr...@googlegroups.com unsubscr...@googlegroups.com> > >> unsubscr...@googlegroups.com>
> > >> > > > > .
> > >> > > > > For more options, visit this group at
> > >> > > > >
> http://groups.google.com/group/google-maps-js-api-v3?hl=en.-Hidequotedtext-
> >
> > >> > > - Show quoted text -
> >
> > >> --
> > >> You received this message because you are sub

[Google Maps API v3] Re: Bike Layer, I don't think its working

2010-06-15 Thread Susannah (Google Employee)
Thanks, I've confirmed this and we're looking into it.

On Jun 16, 11:33 am, Chad Killingsworth
 wrote:
> I'm still not seeing the layer. It was working yesterday . . .
> I've been checking on a variety of browsers. I'm getting consistent
> results - they all fail. No errors - just not getting image results.
>
> Watching the firebug "NET" panel, when the BicyclingLayer is created
> and put on the map, I see new roadmap tiles requested, but they have
> no biking data on them. I am using the latest API version (technically
> I'm not specifying a version). Here's one of the 
> tiles:http://mt0.google.com/vt/lyr...@128,bike&src=api&hl=en-US&x=1972&y=31...
>
> Thanks,
> Chad Killingsworth
>
> On Jun 15, 7:35 pm, "Susannah (Google Employee)"
>
>  wrote:
> > Hi Chad and Al,
>
> > Are you still seeing this error?  The bike layer is loading fine for
> > us.
>
> > If you're still seeing a problem, please send us a screenshot or
> > explain what it is you are and are not seeing.
>
> > Thanks,
> > Susannah
>
> > On Jun 16, 5:38 am, Chad Killingsworth
>
> >  wrote:
> > > I can confirm that it isn't functioning on my map either.
>
> > > Chad Killingsworth
>
> > > On Jun 15, 2:05 pm, Al  wrote:
>
> > > > It appears that the bike layer is no longer working, e.g. the sample
> > > > at...
>
> > > >http://code.google.com/apis/maps/documentation/javascript/examples/la...
>
> > > > doesn't seem to 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...@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: Hide floatShadow pane

2010-06-15 Thread William
I tried changing visibility to "hidden" but it is restyled when the
infowindow is opened.  So instead I set the zIndex to 0, underneath
the map tiles.

http://www.william-map.com/20100616/1/info.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...@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 Earth Extension not working

2010-06-15 Thread Chad Killingsworth
You're using the v2 API. The group for that version is
http://groups.google.com/group/Google-Maps-API/

Chad Killingsworth

On Jun 15, 4:18 pm, Chandra Miller  wrote:
> Here is the websitehttp://156.42.96.39/alert/Google/FCDMCmap.html
>
> On Jun 15, 1:24 pm, Chandra Miller  wrote:
>
>
>
> > When I create a map and get a API code for my website everything works
> > great until I try to add the Earth extenstion.  When I add earth to
> > the options (along with Map, Satellite and Terrain) a screen shows up
> > that says "google maps api key used on this web site was registered
> > for a different website".  I have already generated a key for this
> > website and all the other extensions work so I dont understand why
> > google earth will not show up.  Any suggestion would be greatly
> > appreciated.

-- 
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...@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 does one add a Marker to both the regular map and the custom panorama?

2010-06-15 Thread Chad Killingsworth
I should have guessed that this was already done - just not
documented.

Thanks Ben!

Chad Killingsworth

On Jun 15, 6:53 pm, Ben Appleton  wrote:
> You should be able to write simply:
>
> svMarker.bindTo('position', mapMarker);
>
> This will ensure that svMarker and mapMarker share the same 'position'
> property, including updating when one or the other is dragged.  Is this what
> you mean?
>
> - Ben
>
>
>
> On Wed, Jun 16, 2010 at 1:12 AM, Nathan Raley  wrote:
> > Yea, it was a bit of a pain but I added the markers I needed by creating
> > basically a carbon copy of the other marker.  Then I added events on the
> > drag and dragend to set the position of the marker on the other object, be
> > it the map or the pano.  Really wish it was easier to tie these two together
> > than this.  It wasn't necessarily hard but it does require the user to
> > create double the amount of markers they would previously be required to
> > create.
>
> > Even if we could get the marker manager to handle the markers inside the
> > panorama that would be another solution to this as I could add the same
> > marker to 2 different marker managers.  Either solution would be great.
>
> > On Tue, Jun 15, 2010 at 8:57 AM, Chad Killingsworth <
> > chadkillingswo...@missouristate.edu> wrote:
>
> >> I've seen several use cases come up with this sort of thing. I wonder
> >> if we ask nicely if the Marker object can expose position as an
> >> MVCObject property? Then you could bind and be notified of position
> >> changes.
>
> >> I've filed a feature request for this:
> >>http://code.google.com/p/gmaps-api-issues/issues/detail?id=2491
> >> You can star it to both vote for it and track its progress.
>
> >> Chad Killingsworth
>
> >> On Jun 15, 7:21 am, Cartolog - Map Experts  wrote:
> >> > Hi,
> >> > When the drag event of one marker is triggered, move the second marker
> >> > by setting its new position
>
> >> > Itay
> >> > Cartolog - Map Expertshttp://www.cartolog.com
>
> >> > On Jun 14, 9:12 pm, nlraley  wrote:
>
> >> > > Is there anyway to link the marker dragging between the 2 markers if I
> >> > > create 2 separate markers?
>
> >> > > On Jun 14, 8:12 am, Nathan Raley  wrote:
>
> >> > > > Okay, let me make sure I have this right, so as long as I am
> >> specifying that
> >> > > > the street view panorama is to be placed in a div that I have
> >> defined I have
> >> > > > to create 2 separate markers in order to have them placed both on
> >> the
> >> > > > regular map and on the street view?
>
> >> > > > On Fri, Jun 11, 2010 at 5:46 PM, Marc Ridey 
> >> wrote:
> >> > > > > You currently need to create two markers.
>
> >> > > > > On Sat, Jun 12, 2010 at 5:55 AM, Nathan Raley <
> >> nlrale...@gmail.com> wrote:
>
> >> > > > >> I have a custom panorama and I'd like to add my markers to both
> >> the map
> >> > > > >> and the pano, the pano is in a div on the bottom right of the map
> >> so they
> >> > > > >> are both viewable at the same time, however; once I set the map
> >> for the
> >> > > > >> markers to the pano it takes them off the map.  How can I
> >> accomplish both?
> >> > > > >>  Or do I just need to create 2 markers for each marker I want to
> >> add to
> >> > > > >> both?
>
> >> > > > >> Thanks,
> >> > > > >> Nathan
>
> >> > > > >> --
> >> > > > >> 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...@googlegroups.com.
> >> > > > >> To unsubscribe from this group, send email to
> >> > > > >> google-maps-js-api-v3+unsubscr...@googlegroups.com >> > > > >>  unsubscr...@googlegroups.com> >> 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...@googlegroups.com.
> >> > > > > To unsubscribe from this group, send email to
> >> > > > > google-maps-js-api-v3+unsubscr...@googlegroups.com >> > > > >  unsubscr...@googlegroups.com> >> unsubscr...@googlegroups.com>
> >> > > > > .
> >> > > > > For more options, visit this group at
> >> > > > >http://groups.google.com/group/google-maps-js-api-v3?hl=en.-Hidequotedtext
> >> > > > > -
>
> >> > > - 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...@googlegroups.com.
> >> To unsubscribe from this group, send email to
> >> google-maps-js-api-v3+unsubscr...@googlegroups.com >>  unsubscr...@googlegroups.com>
> >> .
> >> For more options, visit this group at
> >>http://groups.google.com/group/google-maps-js-api-v3?

[Google Maps API v3] Re: Bike Layer, I don't think its working

2010-06-15 Thread Chad Killingsworth
I'm still not seeing the layer. It was working yesterday . . .
I've been checking on a variety of browsers. I'm getting consistent
results - they all fail. No errors - just not getting image results.

Watching the firebug "NET" panel, when the BicyclingLayer is created
and put on the map, I see new roadmap tiles requested, but they have
no biking data on them. I am using the latest API version (technically
I'm not specifying a version). Here's one of the tiles:
http://mt0.google.com/vt/lyr...@128,bike&src=api&hl=en-US&x=1972&y=3182&z=13&s=Ga

Thanks,
Chad Killingsworth

On Jun 15, 7:35 pm, "Susannah (Google Employee)"
 wrote:
> Hi Chad and Al,
>
> Are you still seeing this error?  The bike layer is loading fine for
> us.
>
> If you're still seeing a problem, please send us a screenshot or
> explain what it is you are and are not seeing.
>
> Thanks,
> Susannah
>
> On Jun 16, 5:38 am, Chad Killingsworth
>
>
>
>  wrote:
> > I can confirm that it isn't functioning on my map either.
>
> > Chad Killingsworth
>
> > On Jun 15, 2:05 pm, Al  wrote:
>
> > > It appears that the bike layer is no longer working, e.g. the sample
> > > at...
>
> > >http://code.google.com/apis/maps/documentation/javascript/examples/la...
>
> > > doesn't seem to 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...@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: Bike Layer, I don't think its working

2010-06-15 Thread William
looking at a tile url, here's the latest API
http://mt1.google.com/vt/lyr...@128,bike&src=api&hl=en-GB&x=4955&y=6058&z=14&s=Gal

here's version 3.0
http://mt1.google.com/vt/lyr...@128,bike&hl=en-GB&x=4955&y=6058&z=14&s=Gal

so the difference is src=api

-- 
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...@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: Bike Layer, I don't think its working

2010-06-15 Thread William
I can't see it on Windows XP with IE8, FF 3.6, Chrome 5.0, Safari 3.1
and also I checked iPhone and it doesn't show there.

-- 
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...@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: Bike Layer, I don't think its working

2010-06-15 Thread Susannah (Google Employee)
What browser and OS are you using when you don't see the bike layer?

On Jun 16, 10:43 am, William  wrote:
> when I look at the example I see a regular roadmap instead of the bike
> layer
>
> http://code.google.com/apis/maps/documentation/javascript/examples/la...
>
> however when I change the version to v=3.0 then I see the bike layer

-- 
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...@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: Bike Layer, I don't think its working

2010-06-15 Thread William
when I look at the example I see a regular roadmap instead of the bike
layer

http://code.google.com/apis/maps/documentation/javascript/examples/layer-bicycling.html

however when I change the version to v=3.0 then I see the bike layer

-- 
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...@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: Bike Layer, I don't think its working

2010-06-15 Thread Susannah (Google Employee)
Hi Chad and Al,

Are you still seeing this error?  The bike layer is loading fine for
us.

If you're still seeing a problem, please send us a screenshot or
explain what it is you are and are not seeing.

Thanks,
Susannah

On Jun 16, 5:38 am, Chad Killingsworth
 wrote:
> I can confirm that it isn't functioning on my map either.
>
> Chad Killingsworth
>
> On Jun 15, 2:05 pm, Al  wrote:
>
> > It appears that the bike layer is no longer working, e.g. the sample
> > at...
>
> >http://code.google.com/apis/maps/documentation/javascript/examples/la...
>
> > doesn't seem to 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...@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: create parallel of a route

2010-06-15 Thread William
On Jun 16, 3:20 am, Panos  wrote:
> The point is that in google maps api you could
> use the getPolyline method but there is no more in v3.

v3 has a useful property called overview_path on the DirectionsRoute
which has a simplified version of the entire route (LatLng array)

http://code.google.com/apis/maps/documentation/javascript/reference.html#DirectionsRoute

...

-- 
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...@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 does one add a Marker to both the regular map and the custom panorama?

2010-06-15 Thread Ben Appleton
You should be able to write simply:

svMarker.bindTo('position', mapMarker);

This will ensure that svMarker and mapMarker share the same 'position'
property, including updating when one or the other is dragged.  Is this what
you mean?

- Ben

On Wed, Jun 16, 2010 at 1:12 AM, Nathan Raley  wrote:

> Yea, it was a bit of a pain but I added the markers I needed by creating
> basically a carbon copy of the other marker.  Then I added events on the
> drag and dragend to set the position of the marker on the other object, be
> it the map or the pano.  Really wish it was easier to tie these two together
> than this.  It wasn't necessarily hard but it does require the user to
> create double the amount of markers they would previously be required to
> create.
>
> Even if we could get the marker manager to handle the markers inside the
> panorama that would be another solution to this as I could add the same
> marker to 2 different marker managers.  Either solution would be great.
>
>
> On Tue, Jun 15, 2010 at 8:57 AM, Chad Killingsworth <
> chadkillingswo...@missouristate.edu> wrote:
>
>> I've seen several use cases come up with this sort of thing. I wonder
>> if we ask nicely if the Marker object can expose position as an
>> MVCObject property? Then you could bind and be notified of position
>> changes.
>>
>> I've filed a feature request for this:
>> http://code.google.com/p/gmaps-api-issues/issues/detail?id=2491
>> You can star it to both vote for it and track its progress.
>>
>> Chad Killingsworth
>>
>> On Jun 15, 7:21 am, Cartolog - Map Experts  wrote:
>> > Hi,
>> > When the drag event of one marker is triggered, move the second marker
>> > by setting its new position
>> >
>> > Itay
>> > Cartolog - Map Expertshttp://www.cartolog.com
>> >
>> > On Jun 14, 9:12 pm, nlraley  wrote:
>> >
>> >
>> >
>> > > Is there anyway to link the marker dragging between the 2 markers if I
>> > > create 2 separate markers?
>> >
>> > > On Jun 14, 8:12 am, Nathan Raley  wrote:
>> >
>> > > > Okay, let me make sure I have this right, so as long as I am
>> specifying that
>> > > > the street view panorama is to be placed in a div that I have
>> defined I have
>> > > > to create 2 separate markers in order to have them placed both on
>> the
>> > > > regular map and on the street view?
>> >
>> > > > On Fri, Jun 11, 2010 at 5:46 PM, Marc Ridey 
>> wrote:
>> > > > > You currently need to create two markers.
>> >
>> > > > > On Sat, Jun 12, 2010 at 5:55 AM, Nathan Raley <
>> nlrale...@gmail.com> wrote:
>> >
>> > > > >> I have a custom panorama and I'd like to add my markers to both
>> the map
>> > > > >> and the pano, the pano is in a div on the bottom right of the map
>> so they
>> > > > >> are both viewable at the same time, however; once I set the map
>> for the
>> > > > >> markers to the pano it takes them off the map.  How can I
>> accomplish both?
>> > > > >>  Or do I just need to create 2 markers for each marker I want to
>> add to
>> > > > >> both?
>> >
>> > > > >> Thanks,
>> > > > >> Nathan
>> >
>> > > > >> --
>> > > > >> 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...@googlegroups.com.
>> > > > >> To unsubscribe from this group, send email to
>> > > > >> google-maps-js-api-v3+unsubscr...@googlegroups.com> 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...@googlegroups.com.
>> > > > > To unsubscribe from this group, send email to
>> > > > > google-maps-js-api-v3+unsubscr...@googlegroups.com> unsubscr...@googlegroups.com>
>> > > > > .
>> > > > > For more options, visit this group at
>> > > > >http://groups.google.com/group/google-maps-js-api-v3?hl=en.-Hidequoted
>> > > > > 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...@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...@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-

[Google Maps API v3] Add lat long to elevation info window

2010-06-15 Thread Pedro Venancio
Hello everyone

I would like to add a little functionality to this example of
ElevationService ( 
http://code.google.com/intl/pt-PT/apis/maps/documentation/javascript/examples/elevation-simple.html
), which was to show in the info window, along with the elevation, the
Lat Long coordinates of the position.

Someone help me?

Thank you very much!

Peter

-- 
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...@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: Setting cursor for Groundoverlay?

2010-06-15 Thread dfd
Answering myself...

Of course, the behaviour is correct. Setting the GroundOverlay to
clickable:false, the maps default cursor is used when moving over the
GroundOverlay.

Kindly, dfd

-- 
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...@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 on line 8 while panning around in street view...

2010-06-15 Thread William
On Jun 16, 7:59 am, Nathan Raley  wrote:
> If you pan left or right it will
> fix the forward control but otherwise it
> is broken for the forward when it
> loads the next pov.

what happens if you make the pano 400px high?  maybe there's not
enough room for the controls at 200px high?

-- 
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...@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] polygon: setoptions clickable=false doesn't seem to work?

2010-06-15 Thread CarlEd
I have two quick and easy functions called by a link:

function setEditGeo() {
document.getElementById("spanSetGeoEdit").innerHTML = 'edit geo mode off<\/a>';
for (var i = 0; i < geoFenceArray.length; i++) {
polyListenerArray.push
(google.maps.event.addListener(geoFenceArray[i], 'click',
showArrays));
geoFenceArray[i].setOptions({ clickable: true });
}
}

function setNoEditGeo() {
document.getElementById("spanSetGeoEdit").innerHTML = 'edit geo mode on<\/a>';
for (var i = 0; i < geoFenceArray.length; i++) {
google.maps.event.removeListener(polyListenerArray[i]);
geoFenceArray[i].setOptions({ clickable: false });
}
}

The first successfully sets the polygons as clickable and I see the
infowindow when I click.  however when I click on the link to run the
second function (setNoEditGeo) the code runs, I can step through with
debug, the eventhandler removal works, but the polygons remain
clickable (hand changes to pointing finger when on mouseover) - the
infowindow doesn't appear on clicking though, so some of the function
is working.

I presume that I have the syntax right for setting clickable to false?

-- 
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...@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 on line 8 while panning around in street view...

2010-06-15 Thread William
On Jun 16, 7:55 am, Nathan Raley  wrote:

http://www.suntransformer.com/peter/GoogleAPI3/GoogleAPIv3test.html

> Another area to check would be along highway 142  or S Jackson from E Hull
> St heading Northbound crossing highway 14.  
I agree, here's the steps to replicate the error using IE8

1. zoom in two levels
2. centre screen on Highway 142/Highway 14 intersection
3. click the "street" button
4. click on S Jackson, half way between E Hull St and E Randolph St

The south arrow is pointing directly upwards to the sky instead of
along the road.

There is an "invalid argument" error regarding the transformation
matrix

a.matrix=b+","+-f+","+f*e+","+b*e+",0,0"

This seems to happen whenever the road is heading exactly north (S
Locust St, S Washington St produce similar problem).

not sure what's going wrong, the values seem to be defined ok?
However in the debugger the DOM element "a" doesn't have a matrix
property.

a.matrix=b+","+-f+","+f*e+","+b*e+",0,0"

b = -1
f = 2.2e-16
e = 0.317

...






-- 
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...@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: Error on line 8 while panning around in street view...

2010-06-15 Thread Nathan Raley
And sorry to keep adding posts, I hate not being able to edit t add
something, but going along that northbound route you will find several
triggers for this error.  It also appears to mess up the control for moving
forward to the next pov location as well.  If you pan left or right it will
fix the forward control but otherwise it is broken for the forward when it
loads the next pov.

-- 
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...@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: kml layer with polygon overlay layer click event bug?

2010-06-15 Thread Nathan Raley
Oops, wrong discussion.  Disregard that.

On Tue, Jun 15, 2010 at 4:58 PM, Nathan Raley  wrote:

> And sorry to keep adding posts, I hate not being able to edit t add
> something, but going along that northbound route you will find several
> triggers for this error.  It also appears to mess up the control for moving
> forward to the next pov location as well.  If you pan left or right it will
> fix the forward control but otherwise it is broken for the forward when it
> loads the next pov.
>
>

-- 
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...@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: kml layer with polygon overlay layer click event bug?

2010-06-15 Thread Nathan Raley
And sorry to keep adding posts, I hate not being able to edit t add
something, but going along that northbound route you will find several
triggers for this error.  It also appears to mess up the control for moving
forward to the next pov location as well.  If you pan left or right it will
fix the forward control but otherwise it is broken for the forward when it
loads the next pov.

-- 
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...@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't Load Map from https in IE8

2010-06-15 Thread Robert
Hi Luke,

I am having the same problem.  I still do not understand why this
works perfectly in firefox and chrome but not IE...I do not get
any security warnings or any prompts.

Again, this only happens if the website is hosted on a secure location
(HTTPS).  If the website, with no code changes is moved from a secured
(HTTPS) to unsecure (HTTP with no S) location everything works.  I am
not trying to access the google service through https.

I get a single javascript error  'google' is undefined which
occurs on line 40
geocoder = new google.maps.Geocoder();

Again, this works fine if the website is unsecured (http) for all
browsers and works fine secured (HTTPS) for FireFox and Chrome.

-- 
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...@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: Error on line 8 while panning around in street view...

2010-06-15 Thread Nathan Raley
Another area to check would be along highway 142  or S Jackson from E Hull
St heading Northbound crossing highway 14.  You'll get the same error
panning across there in the South direction and North direction.

-- 
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...@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: kml layer with polygon overlay layer click event bug?

2010-06-15 Thread Nathan Raley
I wanted to add a little insert.  There is a z-index for polygons and
polylines but it only sets the z-index for these 2 objects with respect to
other polygons and polylines, not for other overlays as of yet from what I
can tell.

-- 
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...@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: kml layer with polygon overlay layer click event bug?

2010-06-15 Thread nlraley
Not sure if you need this functionality or not, but if you set the
clickable attribute to the polyline or polygon that you are creating
to false then it should work fine for you again.

The problem would be as you said, the polygon/polyline is being
created over the kml layer that you created.  If it has a clickable
attribute set to true it is going to capture the click event as
opposed to the kml layer.  This is one thing I miss with regards to
the older api was that the map click event returned the overlay and
the overlaylatlng, now click events just return a simple latlng.  In
the old api you could check against the overlay or just pull the
overlaylatlng, but now you only get the latlng of the object you
clicked on.  Your polygon/polyline is at the uppermost layer and
therefore it is capturing the event.

As far as I know there is no z-index available yet in api v3 for
polygons and polylines, only infowindows and markers.

On May 13, 7:17 pm, DmitryM  wrote:
> Nevermind, I figured it out. Just in case anyone is interested, here
> is what is happening.
>
> I was trying to 'select' a feature on a KML layer by creating Polygon
> overlay on top of the KML file. It worked for the first time when I
> click on the KML layer, but once Polygon overlay is created, KML click
> event is not triggered. Even if you delete the overlay by setting the
> map to NULL, KML click event is still not fired.
>
> So, If you add a KML layer to the map first and then create a polygon
> object for example, KML click event is not fired because it is
> 'blocked' by Polyline overlay. What I end up doing is 'precreating'
> Polygon overlay first and only then add KML layer. In this case
> everytime I create an Overlay layer, it is going to be under the KML
> layer and I'm able to click on it.
>
> So my question is if there is any way of controling zIndex of
> overlays?
>
> On May 13, 3:44 pm, DmitryM  wrote:
>
> > When I create a polygon overlay  on top of my  kml layer, the kml
> > click event is not triggered anymore. Map click event and polygon
> > click event however fires.
> > Is it expected behaviour?
>
> > --
> > 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...@googlegroups.com.
> > To unsubscribe from this group, send email to 
> > google-maps-js-api-v3+unsubscr...@googlegroups.com.
> > For more options, visit this group 
> > athttp://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...@googlegroups.com.
> To unsubscribe from this group, send email to 
> google-maps-js-api-v3+unsubscr...@googlegroups.com.
> For more options, visit this group 
> athttp://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...@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 Earth Extension not working

2010-06-15 Thread Chandra Miller
Here is the website http://156.42.96.39/alert/Google/FCDMCmap.html

On Jun 15, 1:24 pm, Chandra Miller  wrote:
> When I create a map and get a API code for my website everything works
> great until I try to add the Earth extenstion.  When I add earth to
> the options (along with Map, Satellite and Terrain) a screen shows up
> that says "google maps api key used on this web site was registered
> for a different website".  I have already generated a key for this
> website and all the other extensions work so I dont understand why
> google earth will not show up.  Any suggestion would be greatly
> appreciated.

-- 
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...@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: Error on line 8 while panning around in street view...

2010-06-15 Thread Nathan Raley
If you've looked at it since my last update you've probably hit the error
and know this already; however, the error in internet explorer states:
Line: 15  Character: 133
a.matrix=b+","+-f+","+f*e+","+b*e+",0,0"

-- 
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...@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] Google Earth Extension not working

2010-06-15 Thread Chandra Miller
When I create a map and get a API code for my website everything works
great until I try to add the Earth extenstion.  When I add earth to
the options (along with Map, Satellite and Terrain) a screen shows up
that says "google maps api key used on this web site was registered
for a different website".  I have already generated a key for this
website and all the other extensions work so I dont understand why
google earth will not show up.  Any suggestion would be greatly
appreciated.

-- 
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...@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: Error on line 8 while panning around in street view...

2010-06-15 Thread Nathan Raley
And I do get the error in browsing it with Internet Explorer 8.

On Tue, Jun 15, 2010 at 3:53 PM, Nathan Raley  wrote:

> Oh and I apologize for the street view not loading up right.  I forgot I
> had changed the code back yesterday when I was bug testing.  It should be
> working properly now as well on the test page I linked.
>
>
> On Tue, Jun 15, 2010 at 3:29 PM, Nathan Raley  wrote:
>
>> I think it has to do with the component we are using to embed the html.
>>  We are using a TcppWebBrowser component.  In case you didn't know here is
>> some information about the component itself:
>>
>> TCppWebBrowser provides access to the Web browser functionality of
>> Microsoft’s Shell Doc Object and Control Library (SHDOCVW.DLL).
>>
>> TCppWebBrowser wraps the IWebBrowser2 interface from Microsoft’s Shell Doc
>> Object and Control Library (SHDOCVW.DLL) to allow you to create a customized
>> Web browsing application or to add Internet, file and network browsing,
>> document viewing, and data downloading capabilities to your C++Builder
>> applications.
>>
>> Note: Because TCppWebBrowser wraps the SHDOCVW.DLL, you must have
>> SHDOCVW.DLL installed to use this component. This DLL ships with Internet
>> Explorer 4 and later.
>>
>> So this is likely causing the issue I would assume and might possibly be a
>> bug, but then again I'm not sure they are looking to support api v3 using
>> components such as this.
>>
>> Is there any way I can capture the event that is fired when the user
>> clicks on the control to change the pov and trap the error in a try catch
>> statement?
>>
>> On Tue, Jun 15, 2010 at 3:08 PM, Chad Killingsworth <
>> chadkillingswo...@missouristate.edu> wrote:
>>
>>> That's not working for me. I've done this in IE 8, FireFox 3.6 and
>>> Chrome 5.
>>>
>>> Chad Killingsworth
>>>
>>> On Jun 15, 1:05 pm, Nathan Raley  wrote:
>>> > Click on a position that has a street view location as per the street
>>> view
>>> > overlay and it will load the pano.
>>> >
>>> > On Tue, Jun 15, 2010 at 1:03 PM, Chad Killingsworth <
>>> >
>>> >
>>> >
>>> > chadkillingswo...@missouristate.edu> wrote:
>>> > > I saw the button and it enables the StreetViewOverlay type layer.
>>> > > However, I'm not seeing an actual panorama anywhere.
>>> >
>>> > > Chad KIllingsworth
>>> >
>>> > > On Jun 15, 12:51 pm, Nathan Raley  wrote:
>>> > > > Nice, I didn't catch the unload part.
>>> >
>>> > > > For the street view overlay to show I have a button in my c++.
>>> >
>>> > > > When that button is clicked it loads up my overlay.
>>> >
>>> > > > I added a button in javascript with similar functionality to the
>>> one in
>>> > > the
>>> > > > c++ code.   Its at the very bottom left of the page.  You might not
>>> have
>>> > > > noticed it.
>>> >
>>> > > > On Tue, Jun 15, 2010 at 12:30 PM, Chad Killingsworth <
>>> >
>>> > > > chadkillingswo...@missouristate.edu> wrote:
>>> > > > > What do you do on your standalone map to get the pano to show? I
>>> > > > > enabled it with DOM Manipulation but it wasn't tied to anything.
>>> >
>>> > > > > Also, you have a GUnload function defined on the body tag. That's
>>> not
>>> > > > > needed in v3 and it's causing a javascript error.
>>> >
>>> > > > > Chad Killingsworth
>>> >
>>> > > > > On Jun 15, 10:15 am, Nathan Raley  wrote:
>>> > > > > > Okay, giving another status update.
>>> >
>>> > > > > > It appears that if I drag to pan around before using the
>>> control to
>>> > > pan
>>> > > > > > around, I don't get the error crossing that intersection.
>>> >
>>> > > > > > However, if I reset the pano position and only use the arrows,
>>> I get
>>> > > the
>>> > > > > > error each time I pass by.
>>> >
>>> > > > > > Could it have something to do with the control setting the
>>> panorama
>>> > > > > position
>>> > > > > > and doing the pan to in the street view?  Is there a way I
>>> could add
>>> > > > > error
>>> > > > > > handling to the event that is fired off during the pan to and
>>> if it
>>> > > fires
>>> > > > > > off an error catch it in a try catch?
>>> >
>>> > > > > > On Tue, Jun 15, 2010 at 10:03 AM, Nathan Raley <
>>> nlrale...@gmail.com>
>>> > > > > wrote:
>>> > > > > > > And further analysis states that it is expecting a '{'
>>> >
>>> > > > > > > On Tue, Jun 15, 2010 at 10:02 AM, Nathan Raley <
>>> > > nlrale...@gmail.com
>>> > > > > >wrote:
>>> >
>>> > > > > > >> Another note, using Microsoft Script editor instead of
>>> Visual
>>> > > Studio
>>> > > > > it is
>>> > > > > > >> showing the error at line 15:
>>> > > > > > >> function Zy(a,b,c,d,e,f,g,h)
>>> >
>>> > > > > > >> On Tue, Jun 15, 2010 at 9:58 AM, Nathan Raley <
>>> > > nlrale...@gmail.com
>>> > > > > >wrote:
>>> >
>>> > > > > > >>> One of the intersections my embedded application is getting
>>> an
>>> > > error
>>> > > > > at
>>> > > > > > >>> is Wilson and Felicia.
>>> >
>>> > > > > > >>> On Tue, Jun 15, 2010 at 9:53 AM, Nathan Raley <
>>> > > nlrale...@gmail.com
>>> > > > > >wrote:
>>> >
>>> > > > > >  Link is at:
>>> >
>>> > >http:

Re: [Google Maps API v3] Re: Error on line 8 while panning around in street view...

2010-06-15 Thread Nathan Raley
I didn't catch your quote above.  I fixed the clicking on the overlay and
the div showing.  I had taken out some function calls when i was cleaning it
up for posting and had taken out the call to show the div.  It's loading
fine now.

If you load it in Explorer 8 you will see the error I am talking about if
you click on the Intersection of Felicia Ave and Wilson St.  Pan around and
it will kick up the error.  I didn't get this error in Chrome so may be an
Explorer bug.

On Tue, Jun 15, 2010 at 3:54 PM, Nathan Raley  wrote:

> And I do get the error in browsing it with Internet Explorer 8.
>
>
> On Tue, Jun 15, 2010 at 3:53 PM, Nathan Raley  wrote:
>
>> Oh and I apologize for the street view not loading up right.  I forgot I
>> had changed the code back yesterday when I was bug testing.  It should be
>> working properly now as well on the test page I linked.
>>
>>
>> On Tue, Jun 15, 2010 at 3:29 PM, Nathan Raley wrote:
>>
>>> I think it has to do with the component we are using to embed the html.
>>>  We are using a TcppWebBrowser component.  In case you didn't know here is
>>> some information about the component itself:
>>>
>>> TCppWebBrowser provides access to the Web browser functionality of
>>> Microsoft’s Shell Doc Object and Control Library (SHDOCVW.DLL).
>>>
>>> TCppWebBrowser wraps the IWebBrowser2 interface from Microsoft’s Shell
>>> Doc Object and Control Library (SHDOCVW.DLL) to allow you to create a
>>> customized Web browsing application or to add Internet, file and network
>>> browsing, document viewing, and data downloading capabilities to your
>>> C++Builder applications.
>>>
>>> Note: Because TCppWebBrowser wraps the SHDOCVW.DLL, you must have
>>> SHDOCVW.DLL installed to use this component. This DLL ships with Internet
>>> Explorer 4 and later.
>>>
>>> So this is likely causing the issue I would assume and might possibly be
>>> a bug, but then again I'm not sure they are looking to support api v3 using
>>> components such as this.
>>>
>>> Is there any way I can capture the event that is fired when the user
>>> clicks on the control to change the pov and trap the error in a try catch
>>> statement?
>>>
>>> On Tue, Jun 15, 2010 at 3:08 PM, Chad Killingsworth <
>>> chadkillingswo...@missouristate.edu> wrote:
>>>
 That's not working for me. I've done this in IE 8, FireFox 3.6 and
 Chrome 5.

 Chad Killingsworth

 On Jun 15, 1:05 pm, Nathan Raley  wrote:
 > Click on a position that has a street view location as per the street
 view
 > overlay and it will load the pano.
 >
 > On Tue, Jun 15, 2010 at 1:03 PM, Chad Killingsworth <
 >
 >
 >
 > chadkillingswo...@missouristate.edu> wrote:
 > > I saw the button and it enables the StreetViewOverlay type layer.
 > > However, I'm not seeing an actual panorama anywhere.
 >
 > > Chad KIllingsworth
 >
 > > On Jun 15, 12:51 pm, Nathan Raley  wrote:
 > > > Nice, I didn't catch the unload part.
 >
 > > > For the street view overlay to show I have a button in my c++.
 >
 > > > When that button is clicked it loads up my overlay.
 >
 > > > I added a button in javascript with similar functionality to the
 one in
 > > the
 > > > c++ code.   Its at the very bottom left of the page.  You might
 not have
 > > > noticed it.
 >
 > > > On Tue, Jun 15, 2010 at 12:30 PM, Chad Killingsworth <
 >
 > > > chadkillingswo...@missouristate.edu> wrote:
 > > > > What do you do on your standalone map to get the pano to show? I
 > > > > enabled it with DOM Manipulation but it wasn't tied to anything.
 >
 > > > > Also, you have a GUnload function defined on the body tag.
 That's not
 > > > > needed in v3 and it's causing a javascript error.
 >
 > > > > Chad Killingsworth
 >
 > > > > On Jun 15, 10:15 am, Nathan Raley  wrote:
 > > > > > Okay, giving another status update.
 >
 > > > > > It appears that if I drag to pan around before using the
 control to
 > > pan
 > > > > > around, I don't get the error crossing that intersection.
 >
 > > > > > However, if I reset the pano position and only use the arrows,
 I get
 > > the
 > > > > > error each time I pass by.
 >
 > > > > > Could it have something to do with the control setting the
 panorama
 > > > > position
 > > > > > and doing the pan to in the street view?  Is there a way I
 could add
 > > > > error
 > > > > > handling to the event that is fired off during the pan to and
 if it
 > > fires
 > > > > > off an error catch it in a try catch?
 >
 > > > > > On Tue, Jun 15, 2010 at 10:03 AM, Nathan Raley <
 nlrale...@gmail.com>
 > > > > wrote:
 > > > > > > And further analysis states that it is expecting a '{'
 >
 > > > > > > On Tue, Jun 15, 2010 at 10:02 AM, Nathan Raley <
 > > nlrale...@gmail.com
 > > > > >wrote:
 >
 > > > > 

Re: [Google Maps API v3] Re: Error on line 8 while panning around in street view...

2010-06-15 Thread Nathan Raley
Oh and I apologize for the street view not loading up right.  I forgot I had
changed the code back yesterday when I was bug testing.  It should be
working properly now as well on the test page I linked.

On Tue, Jun 15, 2010 at 3:29 PM, Nathan Raley  wrote:

> I think it has to do with the component we are using to embed the html.  We
> are using a TcppWebBrowser component.  In case you didn't know here is some
> information about the component itself:
>
> TCppWebBrowser provides access to the Web browser functionality of
> Microsoft’s Shell Doc Object and Control Library (SHDOCVW.DLL).
>
> TCppWebBrowser wraps the IWebBrowser2 interface from Microsoft’s Shell Doc
> Object and Control Library (SHDOCVW.DLL) to allow you to create a customized
> Web browsing application or to add Internet, file and network browsing,
> document viewing, and data downloading capabilities to your C++Builder
> applications.
>
> Note: Because TCppWebBrowser wraps the SHDOCVW.DLL, you must have
> SHDOCVW.DLL installed to use this component. This DLL ships with Internet
> Explorer 4 and later.
>
> So this is likely causing the issue I would assume and might possibly be a
> bug, but then again I'm not sure they are looking to support api v3 using
> components such as this.
>
> Is there any way I can capture the event that is fired when the user clicks
> on the control to change the pov and trap the error in a try catch
> statement?
>
> On Tue, Jun 15, 2010 at 3:08 PM, Chad Killingsworth <
> chadkillingswo...@missouristate.edu> wrote:
>
>> That's not working for me. I've done this in IE 8, FireFox 3.6 and
>> Chrome 5.
>>
>> Chad Killingsworth
>>
>> On Jun 15, 1:05 pm, Nathan Raley  wrote:
>> > Click on a position that has a street view location as per the street
>> view
>> > overlay and it will load the pano.
>> >
>> > On Tue, Jun 15, 2010 at 1:03 PM, Chad Killingsworth <
>> >
>> >
>> >
>> > chadkillingswo...@missouristate.edu> wrote:
>> > > I saw the button and it enables the StreetViewOverlay type layer.
>> > > However, I'm not seeing an actual panorama anywhere.
>> >
>> > > Chad KIllingsworth
>> >
>> > > On Jun 15, 12:51 pm, Nathan Raley  wrote:
>> > > > Nice, I didn't catch the unload part.
>> >
>> > > > For the street view overlay to show I have a button in my c++.
>> >
>> > > > When that button is clicked it loads up my overlay.
>> >
>> > > > I added a button in javascript with similar functionality to the one
>> in
>> > > the
>> > > > c++ code.   Its at the very bottom left of the page.  You might not
>> have
>> > > > noticed it.
>> >
>> > > > On Tue, Jun 15, 2010 at 12:30 PM, Chad Killingsworth <
>> >
>> > > > chadkillingswo...@missouristate.edu> wrote:
>> > > > > What do you do on your standalone map to get the pano to show? I
>> > > > > enabled it with DOM Manipulation but it wasn't tied to anything.
>> >
>> > > > > Also, you have a GUnload function defined on the body tag. That's
>> not
>> > > > > needed in v3 and it's causing a javascript error.
>> >
>> > > > > Chad Killingsworth
>> >
>> > > > > On Jun 15, 10:15 am, Nathan Raley  wrote:
>> > > > > > Okay, giving another status update.
>> >
>> > > > > > It appears that if I drag to pan around before using the control
>> to
>> > > pan
>> > > > > > around, I don't get the error crossing that intersection.
>> >
>> > > > > > However, if I reset the pano position and only use the arrows, I
>> get
>> > > the
>> > > > > > error each time I pass by.
>> >
>> > > > > > Could it have something to do with the control setting the
>> panorama
>> > > > > position
>> > > > > > and doing the pan to in the street view?  Is there a way I could
>> add
>> > > > > error
>> > > > > > handling to the event that is fired off during the pan to and if
>> it
>> > > fires
>> > > > > > off an error catch it in a try catch?
>> >
>> > > > > > On Tue, Jun 15, 2010 at 10:03 AM, Nathan Raley <
>> nlrale...@gmail.com>
>> > > > > wrote:
>> > > > > > > And further analysis states that it is expecting a '{'
>> >
>> > > > > > > On Tue, Jun 15, 2010 at 10:02 AM, Nathan Raley <
>> > > nlrale...@gmail.com
>> > > > > >wrote:
>> >
>> > > > > > >> Another note, using Microsoft Script editor instead of Visual
>> > > Studio
>> > > > > it is
>> > > > > > >> showing the error at line 15:
>> > > > > > >> function Zy(a,b,c,d,e,f,g,h)
>> >
>> > > > > > >> On Tue, Jun 15, 2010 at 9:58 AM, Nathan Raley <
>> > > nlrale...@gmail.com
>> > > > > >wrote:
>> >
>> > > > > > >>> One of the intersections my embedded application is getting
>> an
>> > > error
>> > > > > at
>> > > > > > >>> is Wilson and Felicia.
>> >
>> > > > > > >>> On Tue, Jun 15, 2010 at 9:53 AM, Nathan Raley <
>> > > nlrale...@gmail.com
>> > > > > >wrote:
>> >
>> > > > > >  Link is at:
>> >
>> > >http://www.suntransformer.com/peter/GoogleAPI3/GoogleAPIv3test.html
>> >
>> > > > > >  <
>> > > > >
>> http://www.suntransformer.com/peter/GoogleAPI3/GoogleAPIv3test.html
>> > > > > >Although
>> > > > > >  I haven't been able to reproduce it in the standalone.
>>

[Google Maps API v3] Re: xml linking

2010-06-15 Thread Rossko
> but someone here said that v3 does not support downloadble...

That's right, the API doesn't have it built in.
That's why you need to add on an external script to give the
functionality.

> anyways i went back as you say but is cannot find the downloadxml.js

Here is a sample with download url capability
   http://gmaps-samples-v3.googlecode.com/svn/trunk/xmlparsing/downloadurl.html
if you view the source, you can see that it uses an external
javascript file utils.js - full url
   http://gmaps-samples-v3.googlecode.com/svn/trunk/xmlparsing/util.js
which you can use to add the XML capability to your own webpage

-- 
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...@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: Error on line 8 while panning around in street view...

2010-06-15 Thread Nathan Raley
I think it has to do with the component we are using to embed the html.  We
are using a TcppWebBrowser component.  In case you didn't know here is some
information about the component itself:

TCppWebBrowser provides access to the Web browser functionality of
Microsoft’s Shell Doc Object and Control Library (SHDOCVW.DLL).

TCppWebBrowser wraps the IWebBrowser2 interface from Microsoft’s Shell Doc
Object and Control Library (SHDOCVW.DLL) to allow you to create a customized
Web browsing application or to add Internet, file and network browsing,
document viewing, and data downloading capabilities to your C++Builder
applications.

Note: Because TCppWebBrowser wraps the SHDOCVW.DLL, you must have
SHDOCVW.DLL installed to use this component. This DLL ships with Internet
Explorer 4 and later.

So this is likely causing the issue I would assume and might possibly be a
bug, but then again I'm not sure they are looking to support api v3 using
components such as this.

Is there any way I can capture the event that is fired when the user clicks
on the control to change the pov and trap the error in a try catch
statement?

On Tue, Jun 15, 2010 at 3:08 PM, Chad Killingsworth <
chadkillingswo...@missouristate.edu> wrote:

> That's not working for me. I've done this in IE 8, FireFox 3.6 and
> Chrome 5.
>
> Chad Killingsworth
>
> On Jun 15, 1:05 pm, Nathan Raley  wrote:
> > Click on a position that has a street view location as per the street
> view
> > overlay and it will load the pano.
> >
> > On Tue, Jun 15, 2010 at 1:03 PM, Chad Killingsworth <
> >
> >
> >
> > chadkillingswo...@missouristate.edu> wrote:
> > > I saw the button and it enables the StreetViewOverlay type layer.
> > > However, I'm not seeing an actual panorama anywhere.
> >
> > > Chad KIllingsworth
> >
> > > On Jun 15, 12:51 pm, Nathan Raley  wrote:
> > > > Nice, I didn't catch the unload part.
> >
> > > > For the street view overlay to show I have a button in my c++.
> >
> > > > When that button is clicked it loads up my overlay.
> >
> > > > I added a button in javascript with similar functionality to the one
> in
> > > the
> > > > c++ code.   Its at the very bottom left of the page.  You might not
> have
> > > > noticed it.
> >
> > > > On Tue, Jun 15, 2010 at 12:30 PM, Chad Killingsworth <
> >
> > > > chadkillingswo...@missouristate.edu> wrote:
> > > > > What do you do on your standalone map to get the pano to show? I
> > > > > enabled it with DOM Manipulation but it wasn't tied to anything.
> >
> > > > > Also, you have a GUnload function defined on the body tag. That's
> not
> > > > > needed in v3 and it's causing a javascript error.
> >
> > > > > Chad Killingsworth
> >
> > > > > On Jun 15, 10:15 am, Nathan Raley  wrote:
> > > > > > Okay, giving another status update.
> >
> > > > > > It appears that if I drag to pan around before using the control
> to
> > > pan
> > > > > > around, I don't get the error crossing that intersection.
> >
> > > > > > However, if I reset the pano position and only use the arrows, I
> get
> > > the
> > > > > > error each time I pass by.
> >
> > > > > > Could it have something to do with the control setting the
> panorama
> > > > > position
> > > > > > and doing the pan to in the street view?  Is there a way I could
> add
> > > > > error
> > > > > > handling to the event that is fired off during the pan to and if
> it
> > > fires
> > > > > > off an error catch it in a try catch?
> >
> > > > > > On Tue, Jun 15, 2010 at 10:03 AM, Nathan Raley <
> nlrale...@gmail.com>
> > > > > wrote:
> > > > > > > And further analysis states that it is expecting a '{'
> >
> > > > > > > On Tue, Jun 15, 2010 at 10:02 AM, Nathan Raley <
> > > nlrale...@gmail.com
> > > > > >wrote:
> >
> > > > > > >> Another note, using Microsoft Script editor instead of Visual
> > > Studio
> > > > > it is
> > > > > > >> showing the error at line 15:
> > > > > > >> function Zy(a,b,c,d,e,f,g,h)
> >
> > > > > > >> On Tue, Jun 15, 2010 at 9:58 AM, Nathan Raley <
> > > nlrale...@gmail.com
> > > > > >wrote:
> >
> > > > > > >>> One of the intersections my embedded application is getting
> an
> > > error
> > > > > at
> > > > > > >>> is Wilson and Felicia.
> >
> > > > > > >>> On Tue, Jun 15, 2010 at 9:53 AM, Nathan Raley <
> > > nlrale...@gmail.com
> > > > > >wrote:
> >
> > > > > >  Link is at:
> >
> > >http://www.suntransformer.com/peter/GoogleAPI3/GoogleAPIv3test.html
> >
> > > > > >  <
> > > > >http://www.suntransformer.com/peter/GoogleAPI3/GoogleAPIv3test.html
> > > > > >Although
> > > > > >  I haven't been able to reproduce it in the standalone.
>  However,
> > > I
> > > > > do still
> > > > > >  receive the error at the same intersections every time in
> the
> > > street
> > > > > view on
> > > > > >  the one embedded in my c++ application.  It is even
> triggering
> > > this
> > > > > when the
> > > > > >  markers aren't present in the street view panorama.
> >
> > > > > >  So it's not marker related.  Any other ideas?
> >
> > > > > --
> > >

[Google Maps API v3] Re: Error on line 8 while panning around in street view...

2010-06-15 Thread Chad Killingsworth
That's not working for me. I've done this in IE 8, FireFox 3.6 and
Chrome 5.

Chad Killingsworth

On Jun 15, 1:05 pm, Nathan Raley  wrote:
> Click on a position that has a street view location as per the street view
> overlay and it will load the pano.
>
> On Tue, Jun 15, 2010 at 1:03 PM, Chad Killingsworth <
>
>
>
> chadkillingswo...@missouristate.edu> wrote:
> > I saw the button and it enables the StreetViewOverlay type layer.
> > However, I'm not seeing an actual panorama anywhere.
>
> > Chad KIllingsworth
>
> > On Jun 15, 12:51 pm, Nathan Raley  wrote:
> > > Nice, I didn't catch the unload part.
>
> > > For the street view overlay to show I have a button in my c++.
>
> > > When that button is clicked it loads up my overlay.
>
> > > I added a button in javascript with similar functionality to the one in
> > the
> > > c++ code.   Its at the very bottom left of the page.  You might not have
> > > noticed it.
>
> > > On Tue, Jun 15, 2010 at 12:30 PM, Chad Killingsworth <
>
> > > chadkillingswo...@missouristate.edu> wrote:
> > > > What do you do on your standalone map to get the pano to show? I
> > > > enabled it with DOM Manipulation but it wasn't tied to anything.
>
> > > > Also, you have a GUnload function defined on the body tag. That's not
> > > > needed in v3 and it's causing a javascript error.
>
> > > > Chad Killingsworth
>
> > > > On Jun 15, 10:15 am, Nathan Raley  wrote:
> > > > > Okay, giving another status update.
>
> > > > > It appears that if I drag to pan around before using the control to
> > pan
> > > > > around, I don't get the error crossing that intersection.
>
> > > > > However, if I reset the pano position and only use the arrows, I get
> > the
> > > > > error each time I pass by.
>
> > > > > Could it have something to do with the control setting the panorama
> > > > position
> > > > > and doing the pan to in the street view?  Is there a way I could add
> > > > error
> > > > > handling to the event that is fired off during the pan to and if it
> > fires
> > > > > off an error catch it in a try catch?
>
> > > > > On Tue, Jun 15, 2010 at 10:03 AM, Nathan Raley 
> > > > wrote:
> > > > > > And further analysis states that it is expecting a '{'
>
> > > > > > On Tue, Jun 15, 2010 at 10:02 AM, Nathan Raley <
> > nlrale...@gmail.com
> > > > >wrote:
>
> > > > > >> Another note, using Microsoft Script editor instead of Visual
> > Studio
> > > > it is
> > > > > >> showing the error at line 15:
> > > > > >> function Zy(a,b,c,d,e,f,g,h)
>
> > > > > >> On Tue, Jun 15, 2010 at 9:58 AM, Nathan Raley <
> > nlrale...@gmail.com
> > > > >wrote:
>
> > > > > >>> One of the intersections my embedded application is getting an
> > error
> > > > at
> > > > > >>> is Wilson and Felicia.
>
> > > > > >>> On Tue, Jun 15, 2010 at 9:53 AM, Nathan Raley <
> > nlrale...@gmail.com
> > > > >wrote:
>
> > > > >  Link is at:
>
> >http://www.suntransformer.com/peter/GoogleAPI3/GoogleAPIv3test.html
>
> > > > >  <
> > > >http://www.suntransformer.com/peter/GoogleAPI3/GoogleAPIv3test.html
> > > > >Although
> > > > >  I haven't been able to reproduce it in the standalone.  However,
> > I
> > > > do still
> > > > >  receive the error at the same intersections every time in the
> > street
> > > > view on
> > > > >  the one embedded in my c++ application.  It is even triggering
> > this
> > > > when the
> > > > >  markers aren't present in the street view panorama.
>
> > > > >  So it's not marker related.  Any other ideas?
>
> > > > --
> > > > 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...@googlegroups.com.
> > > > To unsubscribe from this group, send email to
> > > > google-maps-js-api-v3+unsubscr...@googlegroups.com > > >  unsubscr...@googlegroups.com> > 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...@googlegroups.com.
> > To unsubscribe from this group, send email to
> > google-maps-js-api-v3+unsubscr...@googlegroups.com > 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...@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: xml linking

2010-06-15 Thread Panagi
hi
thank you
but someone here said that v3 does not support downloadble...
anyways i went back as you say but is cannot find the downloadxml.js
any other ideas or other tutorials about this; multi categories and
checked boxes;
i did mail mike williams but i guess he does not reply to private
mails.
thank you

On 11 Ιούν, 21:06, Rossko  wrote:
> > thank you for your reply. so there must be the thing. but i do not
> > really know what to put there...
>
> You'll have to go back to wherever you found that example, and see if
> you are also allowed to take a copy of downloadxml.js
> Then put your copy of that script on your server, and change the
> 

Re: [Google Maps API v3] Re: Error on line 8 while panning around in street view...

2010-06-15 Thread Nathan Raley
And something else to consider, the only thing that should be occuring
during this time is the default behavior of the panorama and it handling the
user clicking on the directional arrow changing the heading.  It's like I am
force feeding it the changes manually, its the user clicking on the arrows
to change the pov.  This error isn't occuring if the pov has been changed
manually by changing the pov by clicking and dragging, only when you start
with the defaults and pan around to the trouble areas using the arrow
buttons.

-- 
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...@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: Error on line 8 while panning around in street view...

2010-06-15 Thread Nathan Raley
Okay, I've been digging around a bit more.  The error:
for(var c=0,d=K(a);c wrote:

> I didn't like the drag and drop of the peg man preferred the ability to add
> the street view overlay and click on the location in the overlay and get the
> panorama for the street view location of where the user clicked.
>
> I sort of had to do this in a round about manner.  I have several
> intersections defined there and whenever the user clicks on the street view
> button it adds the overlay and sets the pano at the intersection they have
> selected.  Since there are no intersections then you have to click on the
> street view overlay in order to get the location.
>
> I know this isn't the best manner of which to do it b/c it is basically
> calling the map click event and pulling the point.  In version 3 of the api
> we no longer have the ability to retrieve the overlay or overlaylatln that
> we were able to before so I am sticking with this basic manner until/if the
> map click event regains that functionality.
>
> I just wanted to also add thanks for all the help thus far.  It's been a
> bit of a pain trying to reproduce this and I'm not sure what is causing this
> error still.  I know I haven't been able to get it to reproduce in the same
> code on the page I provided you.  However it still is occurring in the
> embedded map.  I have tried taking out chunks of the extra javascript
> includes that I have and therefore cutting out the extra pieces of code that
> they included, and I still get this error.
>
> The really odd thing is this:
> If you pan around left and right and pass over the point that causes the
> error, it will fire off every single time in the embedded app.  However, if
> you have clicked and manually panned, and then pan left or right and pass
> over the point in question, it doesn't cause this error.  So apparently
> something is being set differently when you manually move the pano viewpoint
> around that is causing this condition to not cause an error.  I'm just not
> sure what it is.
>
>
> On Tue, Jun 15, 2010 at 1:05 PM, Nathan Raley  wrote:
>
>> Click on a position that has a street view location as per the street view
>> overlay and it will load the pano.
>>
>>
>> On Tue, Jun 15, 2010 at 1:03 PM, Chad Killingsworth <
>> chadkillingswo...@missouristate.edu> wrote:
>>
>>> I saw the button and it enables the StreetViewOverlay type layer.
>>> However, I'm not seeing an actual panorama anywhere.
>>>
>>> Chad KIllingsworth
>>>
>>> On Jun 15, 12:51 pm, Nathan Raley  wrote:
>>> > Nice, I didn't catch the unload part.
>>> >
>>> > For the street view overlay to show I have a button in my c++.
>>> >
>>> > When that button is clicked it loads up my overlay.
>>> >
>>> > I added a button in javascript with similar functionality to the one in
>>> the
>>> > c++ code.   Its at the very bottom left of the page.  You might not
>>> have
>>> > noticed it.
>>> >
>>> > On Tue, Jun 15, 2010 at 12:30 PM, Chad Killingsworth <
>>> >
>>> >
>>> >
>>> > chadkillingswo...@missouristate.edu> wrote:
>>> > > What do you do on your standalone map to get the pano to show? I
>>> > > enabled it with DOM Manipulation but it wasn't tied to anything.
>>> >
>>> > > Also, you have a GUnload function defined on the body tag. That's not
>>> > > needed in v3 and it's causing a javascript error.
>>> >
>>> > > Chad Killingsworth
>>> >
>>> > > On Jun 15, 10:15 am, Nathan Raley  wrote:
>>> > > > Okay, giving another status update.
>>> >
>>> > > > It appears that if I drag to pan around before using the control to
>>> pan
>>> > > > around, I don't get the error crossing that intersection.
>>> >
>>> > > > However, if I reset the pano position and only use the arrows, I
>>> get the
>>> > > > error each time I pass by.
>>> >
>>> > > > Could it have something to do with the control setting the panorama
>>> > > position
>>> > > > and doing the pan to in the street view?  Is there a way I could
>>> add
>>> > > error
>>> > > > handling to the event that is fired off during the pan to and if it
>>> fires
>>> > > > off an error catch it in a try catch?
>>> >
>>> > > > On Tue, Jun 15, 2010 at 10:03 AM, Nathan Raley <
>>> nlrale...@gmail.com>
>>> > > wrote:
>>> > > > > And further analysis states that it is expecting a '{'
>>> >
>>> > > > > On Tue, Jun 15, 2010 at 10:02 AM, Nathan Raley <
>>> nlrale...@gmail.com
>>> > > >wrote:
>>> >
>>> > > > >> Another note, using Microsoft Script editor instead of Visual
>>> Studio
>>> > > it is
>>> > > > >> showing the error at line 15:
>>> > > > >> function Zy(a,b,c,d,e,f,g,h)
>>> >
>>> > > > >> On Tue, Jun 15, 2010 at 9:58 AM, Nathan Raley <
>>> nlrale...@gmail.com
>>> > > >wrote:
>>> >
>>> > > > >>> One of the intersections my embedded application is getting an
>>> error
>>> > > at
>>> > > > >>> is Wilson and Felicia.
>>> >
>>> > > > >>> On Tue, Jun 15, 2010 at 9:53 AM, Nathan Raley <
>>> nlrale...@gmail.com
>>> > > >wrote:
>>> >
>>> > > >  Link is at:
>>> > > > 
>>> http://www.suntransformer.com/peter/G

[Google Maps API v3] Re: Bike Layer, I don't think its working

2010-06-15 Thread Chad Killingsworth
I can confirm that it isn't functioning on my map either.

Chad Killingsworth

On Jun 15, 2:05 pm, Al  wrote:
> It appears that the bike layer is no longer working, e.g. the sample
> at...
>
> http://code.google.com/apis/maps/documentation/javascript/examples/la...
>
> doesn't seem to 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...@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] Bike Layer, I don't think its working

2010-06-15 Thread Al
It appears that the bike layer is no longer working, e.g. the sample
at...

http://code.google.com/apis/maps/documentation/javascript/examples/layer-bicycling.html

doesn't seem to 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...@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] about biasing option(s)

2010-06-15 Thread Raph. D
Hi,
I've some problem to understand the current biasing design as it
apparently doesn't offer what I'm looking for.
I'm using the geocode API in order the autocomplete a form (and grab
the coordinates)
When someone complete the address field he has already completed
country and/or postal code (at least)
But when it comes to complete the address I can get the API to returns
some meaning full result because the priority is given worldwide to an
exact match rather than "regionnally" with a "starts_with:"
Precising the region (country) doesn't help much.
An example, I know I'm looking in 54600, Villers-lès-Nancy, Meurthe et
Moselle, Lorraine, France for the
"18 rue du Placieux".
The scheme is the following :
http://maps.google.com/maps/api/geocode/xml?address=18+rue+du+plac&sensor=false
- with or without the ®ion=FR the result is the same of course
- the ll parameter doesn't help either

The problem here is that I'm getting the results of the "rue du Plac"
which exists in another french region (34980).
What I would like is either, with another parameter :
- address=18+rue+du+plac&postal_code=54600®ion=FR
or, with in comma way :
- address=18+rue+du+plac,+54600
or, giving hints to the way to threat the address :
- address=18+rue+du+plac,+Lorraine,
+France&parse_as_full_address_string=true
(I'm curious about how the API currently treat commas, does it simply
strip the right part after the first one ?)

Is there any workaround with the current API, or rather, is there any
plans to implement something more or less in that taste (I think it
would be really useful)
The way to solve this would probably be related to the feature request
#838 about structured queries.

Thank you for the API and good luck.

-- 
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...@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] create parallel of a route

2010-06-15 Thread Panos
I am trying to get the route as a polyline in order to make a parallel
of it. The purpose is to make a polygon from two parallels and two
half circles (buffer). The point is that in google maps api you could
use the getPolyline method but there is no more in v3. The alternative
solution is that you can use something like:
var myRoute = directionResult.routes[0].legs[0];
so you get an array of the points of the route.
After this i am trying to make a polyline by doing:
var ParallelPoints = [
  for (var i=0; i < myRoute.steps.length-1; i++){
  myRoute.steps[i].start_point,
 }
  myRoute.steps[myRoute.steps.length].start_point

  ];

but i am getting an error all the time and i am assuming that you
cannot use a for loop inside the array ParallelPoints.
Any idea?

-- 
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...@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] Adding new data/points without noticeable page reload using GoogleMaps API v3

2010-06-15 Thread the_thought_police
Hi,

Firstly apologies if this is either an obvious or unanswerable
question - I'm completely new to the GoogleMaps API and am stumbling
around with it in an ASP.Net environment.

I'm basically looking to present a map with a series of markers
populated from a database (can do this part).
When the user pans/zooms, I'd like to fire an event which will trigger
a new data grab from the database relevant to the new extent (using
server-side code) and finally plot the new points on the map.

Are there any tips/tricks that someone can suggest which will enable
me to achieve this without a very noticeable page reload every time
the user pans or zooms?
Storing all the data client-side is not an option as there could be
hundreds of thousands of records.
I've heard AJAX may be useful here, but don't have any working
samples.

Any guidance really appreciated!

-- 
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...@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] Verify an address?

2010-06-15 Thread beatpanda
All I want to do is check whether or not a geocoded point on the map
is within the shaded area of a polygon created by a KML file. One
similar use case is having people enter an address to see what
congressional district they're in. I know this can be done with maps
v2 but I haven't found a way to do it with v3. Can anyone help?

My map is here: sandbox.emrl.com/maps

-- 
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...@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: Error on line 8 while panning around in street view...

2010-06-15 Thread Nathan Raley
I didn't like the drag and drop of the peg man preferred the ability to add
the street view overlay and click on the location in the overlay and get the
panorama for the street view location of where the user clicked.

I sort of had to do this in a round about manner.  I have several
intersections defined there and whenever the user clicks on the street view
button it adds the overlay and sets the pano at the intersection they have
selected.  Since there are no intersections then you have to click on the
street view overlay in order to get the location.

I know this isn't the best manner of which to do it b/c it is basically
calling the map click event and pulling the point.  In version 3 of the api
we no longer have the ability to retrieve the overlay or overlaylatln that
we were able to before so I am sticking with this basic manner until/if the
map click event regains that functionality.

I just wanted to also add thanks for all the help thus far.  It's been a bit
of a pain trying to reproduce this and I'm not sure what is causing this
error still.  I know I haven't been able to get it to reproduce in the same
code on the page I provided you.  However it still is occurring in the
embedded map.  I have tried taking out chunks of the extra javascript
includes that I have and therefore cutting out the extra pieces of code that
they included, and I still get this error.

The really odd thing is this:
If you pan around left and right and pass over the point that causes the
error, it will fire off every single time in the embedded app.  However, if
you have clicked and manually panned, and then pan left or right and pass
over the point in question, it doesn't cause this error.  So apparently
something is being set differently when you manually move the pano viewpoint
around that is causing this condition to not cause an error.  I'm just not
sure what it is.

On Tue, Jun 15, 2010 at 1:05 PM, Nathan Raley  wrote:

> Click on a position that has a street view location as per the street view
> overlay and it will load the pano.
>
>
> On Tue, Jun 15, 2010 at 1:03 PM, Chad Killingsworth <
> chadkillingswo...@missouristate.edu> wrote:
>
>> I saw the button and it enables the StreetViewOverlay type layer.
>> However, I'm not seeing an actual panorama anywhere.
>>
>> Chad KIllingsworth
>>
>> On Jun 15, 12:51 pm, Nathan Raley  wrote:
>> > Nice, I didn't catch the unload part.
>> >
>> > For the street view overlay to show I have a button in my c++.
>> >
>> > When that button is clicked it loads up my overlay.
>> >
>> > I added a button in javascript with similar functionality to the one in
>> the
>> > c++ code.   Its at the very bottom left of the page.  You might not have
>> > noticed it.
>> >
>> > On Tue, Jun 15, 2010 at 12:30 PM, Chad Killingsworth <
>> >
>> >
>> >
>> > chadkillingswo...@missouristate.edu> wrote:
>> > > What do you do on your standalone map to get the pano to show? I
>> > > enabled it with DOM Manipulation but it wasn't tied to anything.
>> >
>> > > Also, you have a GUnload function defined on the body tag. That's not
>> > > needed in v3 and it's causing a javascript error.
>> >
>> > > Chad Killingsworth
>> >
>> > > On Jun 15, 10:15 am, Nathan Raley  wrote:
>> > > > Okay, giving another status update.
>> >
>> > > > It appears that if I drag to pan around before using the control to
>> pan
>> > > > around, I don't get the error crossing that intersection.
>> >
>> > > > However, if I reset the pano position and only use the arrows, I get
>> the
>> > > > error each time I pass by.
>> >
>> > > > Could it have something to do with the control setting the panorama
>> > > position
>> > > > and doing the pan to in the street view?  Is there a way I could add
>> > > error
>> > > > handling to the event that is fired off during the pan to and if it
>> fires
>> > > > off an error catch it in a try catch?
>> >
>> > > > On Tue, Jun 15, 2010 at 10:03 AM, Nathan Raley > >
>> > > wrote:
>> > > > > And further analysis states that it is expecting a '{'
>> >
>> > > > > On Tue, Jun 15, 2010 at 10:02 AM, Nathan Raley <
>> nlrale...@gmail.com
>> > > >wrote:
>> >
>> > > > >> Another note, using Microsoft Script editor instead of Visual
>> Studio
>> > > it is
>> > > > >> showing the error at line 15:
>> > > > >> function Zy(a,b,c,d,e,f,g,h)
>> >
>> > > > >> On Tue, Jun 15, 2010 at 9:58 AM, Nathan Raley <
>> nlrale...@gmail.com
>> > > >wrote:
>> >
>> > > > >>> One of the intersections my embedded application is getting an
>> error
>> > > at
>> > > > >>> is Wilson and Felicia.
>> >
>> > > > >>> On Tue, Jun 15, 2010 at 9:53 AM, Nathan Raley <
>> nlrale...@gmail.com
>> > > >wrote:
>> >
>> > > >  Link is at:
>> > > > 
>> http://www.suntransformer.com/peter/GoogleAPI3/GoogleAPIv3test.html
>> >
>> > > >  <
>> > >http://www.suntransformer.com/peter/GoogleAPI3/GoogleAPIv3test.html
>> > > >Although
>> > > >  I haven't been able to reproduce it in the standalone.
>>  However, I
>> > > do still
>> > > >  receive th

Re: [Google Maps API v3] Re: Error on line 8 while panning around in street view...

2010-06-15 Thread Nathan Raley
Click on a position that has a street view location as per the street view
overlay and it will load the pano.

On Tue, Jun 15, 2010 at 1:03 PM, Chad Killingsworth <
chadkillingswo...@missouristate.edu> wrote:

> I saw the button and it enables the StreetViewOverlay type layer.
> However, I'm not seeing an actual panorama anywhere.
>
> Chad KIllingsworth
>
> On Jun 15, 12:51 pm, Nathan Raley  wrote:
> > Nice, I didn't catch the unload part.
> >
> > For the street view overlay to show I have a button in my c++.
> >
> > When that button is clicked it loads up my overlay.
> >
> > I added a button in javascript with similar functionality to the one in
> the
> > c++ code.   Its at the very bottom left of the page.  You might not have
> > noticed it.
> >
> > On Tue, Jun 15, 2010 at 12:30 PM, Chad Killingsworth <
> >
> >
> >
> > chadkillingswo...@missouristate.edu> wrote:
> > > What do you do on your standalone map to get the pano to show? I
> > > enabled it with DOM Manipulation but it wasn't tied to anything.
> >
> > > Also, you have a GUnload function defined on the body tag. That's not
> > > needed in v3 and it's causing a javascript error.
> >
> > > Chad Killingsworth
> >
> > > On Jun 15, 10:15 am, Nathan Raley  wrote:
> > > > Okay, giving another status update.
> >
> > > > It appears that if I drag to pan around before using the control to
> pan
> > > > around, I don't get the error crossing that intersection.
> >
> > > > However, if I reset the pano position and only use the arrows, I get
> the
> > > > error each time I pass by.
> >
> > > > Could it have something to do with the control setting the panorama
> > > position
> > > > and doing the pan to in the street view?  Is there a way I could add
> > > error
> > > > handling to the event that is fired off during the pan to and if it
> fires
> > > > off an error catch it in a try catch?
> >
> > > > On Tue, Jun 15, 2010 at 10:03 AM, Nathan Raley 
> > > wrote:
> > > > > And further analysis states that it is expecting a '{'
> >
> > > > > On Tue, Jun 15, 2010 at 10:02 AM, Nathan Raley <
> nlrale...@gmail.com
> > > >wrote:
> >
> > > > >> Another note, using Microsoft Script editor instead of Visual
> Studio
> > > it is
> > > > >> showing the error at line 15:
> > > > >> function Zy(a,b,c,d,e,f,g,h)
> >
> > > > >> On Tue, Jun 15, 2010 at 9:58 AM, Nathan Raley <
> nlrale...@gmail.com
> > > >wrote:
> >
> > > > >>> One of the intersections my embedded application is getting an
> error
> > > at
> > > > >>> is Wilson and Felicia.
> >
> > > > >>> On Tue, Jun 15, 2010 at 9:53 AM, Nathan Raley <
> nlrale...@gmail.com
> > > >wrote:
> >
> > > >  Link is at:
> > > > 
> http://www.suntransformer.com/peter/GoogleAPI3/GoogleAPIv3test.html
> >
> > > >  <
> > >http://www.suntransformer.com/peter/GoogleAPI3/GoogleAPIv3test.html
> > > >Although
> > > >  I haven't been able to reproduce it in the standalone.  However,
> I
> > > do still
> > > >  receive the error at the same intersections every time in the
> street
> > > view on
> > > >  the one embedded in my c++ application.  It is even triggering
> this
> > > when the
> > > >  markers aren't present in the street view panorama.
> >
> > > >  So it's not marker related.  Any other ideas?
> >
> > > --
> > > 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...@googlegroups.com.
> > > To unsubscribe from this group, send email to
> > > google-maps-js-api-v3+unsubscr...@googlegroups.com 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...@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...@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 on line 8 while panning around in street view...

2010-06-15 Thread Chad Killingsworth
I saw the button and it enables the StreetViewOverlay type layer.
However, I'm not seeing an actual panorama anywhere.

Chad KIllingsworth

On Jun 15, 12:51 pm, Nathan Raley  wrote:
> Nice, I didn't catch the unload part.
>
> For the street view overlay to show I have a button in my c++.
>
> When that button is clicked it loads up my overlay.
>
> I added a button in javascript with similar functionality to the one in the
> c++ code.   Its at the very bottom left of the page.  You might not have
> noticed it.
>
> On Tue, Jun 15, 2010 at 12:30 PM, Chad Killingsworth <
>
>
>
> chadkillingswo...@missouristate.edu> wrote:
> > What do you do on your standalone map to get the pano to show? I
> > enabled it with DOM Manipulation but it wasn't tied to anything.
>
> > Also, you have a GUnload function defined on the body tag. That's not
> > needed in v3 and it's causing a javascript error.
>
> > Chad Killingsworth
>
> > On Jun 15, 10:15 am, Nathan Raley  wrote:
> > > Okay, giving another status update.
>
> > > It appears that if I drag to pan around before using the control to pan
> > > around, I don't get the error crossing that intersection.
>
> > > However, if I reset the pano position and only use the arrows, I get the
> > > error each time I pass by.
>
> > > Could it have something to do with the control setting the panorama
> > position
> > > and doing the pan to in the street view?  Is there a way I could add
> > error
> > > handling to the event that is fired off during the pan to and if it fires
> > > off an error catch it in a try catch?
>
> > > On Tue, Jun 15, 2010 at 10:03 AM, Nathan Raley 
> > wrote:
> > > > And further analysis states that it is expecting a '{'
>
> > > > On Tue, Jun 15, 2010 at 10:02 AM, Nathan Raley  > >wrote:
>
> > > >> Another note, using Microsoft Script editor instead of Visual Studio
> > it is
> > > >> showing the error at line 15:
> > > >> function Zy(a,b,c,d,e,f,g,h)
>
> > > >> On Tue, Jun 15, 2010 at 9:58 AM, Nathan Raley  > >wrote:
>
> > > >>> One of the intersections my embedded application is getting an error
> > at
> > > >>> is Wilson and Felicia.
>
> > > >>> On Tue, Jun 15, 2010 at 9:53 AM, Nathan Raley  > >wrote:
>
> > >  Link is at:
> > > http://www.suntransformer.com/peter/GoogleAPI3/GoogleAPIv3test.html
>
> > >  <
> >http://www.suntransformer.com/peter/GoogleAPI3/GoogleAPIv3test.html
> > >Although
> > >  I haven't been able to reproduce it in the standalone.  However, I
> > do still
> > >  receive the error at the same intersections every time in the street
> > view on
> > >  the one embedded in my c++ application.  It is even triggering this
> > when the
> > >  markers aren't present in the street view panorama.
>
> > >  So it's not marker related.  Any other ideas?
>
> > --
> > 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...@googlegroups.com.
> > To unsubscribe from this group, send email to
> > google-maps-js-api-v3+unsubscr...@googlegroups.com > 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...@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: Error on line 8 while panning around in street view...

2010-06-15 Thread Nathan Raley
Nice, I didn't catch the unload part.

For the street view overlay to show I have a button in my c++.

When that button is clicked it loads up my overlay.

I added a button in javascript with similar functionality to the one in the
c++ code.   Its at the very bottom left of the page.  You might not have
noticed it.

On Tue, Jun 15, 2010 at 12:30 PM, Chad Killingsworth <
chadkillingswo...@missouristate.edu> wrote:

> What do you do on your standalone map to get the pano to show? I
> enabled it with DOM Manipulation but it wasn't tied to anything.
>
> Also, you have a GUnload function defined on the body tag. That's not
> needed in v3 and it's causing a javascript error.
>
> Chad Killingsworth
>
> On Jun 15, 10:15 am, Nathan Raley  wrote:
> > Okay, giving another status update.
> >
> > It appears that if I drag to pan around before using the control to pan
> > around, I don't get the error crossing that intersection.
> >
> > However, if I reset the pano position and only use the arrows, I get the
> > error each time I pass by.
> >
> > Could it have something to do with the control setting the panorama
> position
> > and doing the pan to in the street view?  Is there a way I could add
> error
> > handling to the event that is fired off during the pan to and if it fires
> > off an error catch it in a try catch?
> >
> >
> >
> > On Tue, Jun 15, 2010 at 10:03 AM, Nathan Raley 
> wrote:
> > > And further analysis states that it is expecting a '{'
> >
> > > On Tue, Jun 15, 2010 at 10:02 AM, Nathan Raley  >wrote:
> >
> > >> Another note, using Microsoft Script editor instead of Visual Studio
> it is
> > >> showing the error at line 15:
> > >> function Zy(a,b,c,d,e,f,g,h)
> >
> > >> On Tue, Jun 15, 2010 at 9:58 AM, Nathan Raley  >wrote:
> >
> > >>> One of the intersections my embedded application is getting an error
> at
> > >>> is Wilson and Felicia.
> >
> > >>> On Tue, Jun 15, 2010 at 9:53 AM, Nathan Raley  >wrote:
> >
> >  Link is at:
> > http://www.suntransformer.com/peter/GoogleAPI3/GoogleAPIv3test.html
> >
> >  <
> http://www.suntransformer.com/peter/GoogleAPI3/GoogleAPIv3test.html
> >Although
> >  I haven't been able to reproduce it in the standalone.  However, I
> do still
> >  receive the error at the same intersections every time in the street
> view on
> >  the one embedded in my c++ application.  It is even triggering this
> when the
> >  markers aren't present in the street view panorama.
> >
> >  So it's not marker related.  Any other ideas?
>
> --
> 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...@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...@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 a MVCArray be cleared?

2010-06-15 Thread Pil
The while loop is working fine to make the MVCArray empty.

Thanks for that.

I'll try your test case a bit later. Looks good.

Thanks.





On Jun 15, 7:39 pm, Chad Killingsworth
 wrote:
> This is where I add the standard text, "Can you provide a link to your
> site?"
>
> Here's the test case I ran which worked:
>
> var points = new google.maps.MVCArray([
> new google.maps.LatLng(37.20084, -93.28121),
> new google.maps.LatLng(37.201, -93.292),
> new google.maps.LatLng(37.194, -93.293),
> new google.maps.LatLng(37.195, -93.279)
> ]);
> var line = new google.maps.Polyline({map: map, path: points});
> var shape = new google.maps.Polygon({map: map, path: points});
> points.pop();
>
> The last line immediately changed both the polyline and the polygon on
> the map.
>
> Chad Killingsworth
>
> On Jun 15, 12:25 pm, Pil  wrote:
>
> > When I access a normal array with the method of an MVCArray I get an
> > error
>
> > Error: points.removeAt is not a function
>
> > But it seems I cannot force the polyline to use my own provided
> > MVCArray.
> > The creating of a polyline/polygon seems to include the creation of an
> > implied MVCArray. So there seems no possibility that a polyline and a
> > polygon can share the same MVCArray alternately.
>
> > On Jun 15, 6:41 pm, Nathan Raley  wrote:
>
> > > Err sorry, I edited my text and forgot to clear out a line.
>
> > > Ignore the line "This clears out the position "pointer" in the array
> > > points."
>
> > > The rest should be valid for you.  Let me know if that helps you out.
>
> > > On Tue, Jun 15, 2010 at 11:40 AM, Nathan Raley  
> > > wrote:
> > > > Well if you are wanting to set clear the entire array you should do:
> > > > points = [];
>
> > > > This clears out the position "pointer" in the array points.
>
> > > > If you want to remove only the last position you do it as:
> > > > points.pop();
>
> > > > If you want to remove a specific element at a specific location you do:
> > > > points.removeAt(i);
> > > > Where i is the position you want cleared out.
>
> > > > This help any?
>
> > > > On Tue, Jun 15, 2010 at 11:29 AM, Pil  wrote:
>
> > > >> On Jun 15, 6:05 pm, Nathan Raley  wrote:
> > > >> > Did you try points = [];?
>
> > > >> Yes, this doesn't work when I say
>
> > > >> poly.setPath(points);
>
> > > >> i.e. no polyline will appear. When I use a MVCArray all works well.
> > > >> The MVCArray should be shared alternately between a Polyline and a
> > > >> Polygon. This all works well - but I found no way to set the elements
> > > >> of the MVCArray to 0.
>
> > > >> --
> > > >> 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...@googlegroups.com.
> > > >> To unsubscribe from this group, send email to
> > > >> google-maps-js-api-v3+unsubscr...@googlegroups.com > > >>  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...@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 a MVCArray be cleared?

2010-06-15 Thread Chad Killingsworth
This is where I add the standard text, "Can you provide a link to your
site?"

Here's the test case I ran which worked:

var points = new google.maps.MVCArray([
new google.maps.LatLng(37.20084, -93.28121),
new google.maps.LatLng(37.201, -93.292),
new google.maps.LatLng(37.194, -93.293),
new google.maps.LatLng(37.195, -93.279)
]);
var line = new google.maps.Polyline({map: map, path: points});
var shape = new google.maps.Polygon({map: map, path: points});
points.pop();

The last line immediately changed both the polyline and the polygon on
the map.

Chad Killingsworth

On Jun 15, 12:25 pm, Pil  wrote:
> When I access a normal array with the method of an MVCArray I get an
> error
>
> Error: points.removeAt is not a function
>
> But it seems I cannot force the polyline to use my own provided
> MVCArray.
> The creating of a polyline/polygon seems to include the creation of an
> implied MVCArray. So there seems no possibility that a polyline and a
> polygon can share the same MVCArray alternately.
>
> On Jun 15, 6:41 pm, Nathan Raley  wrote:
>
>
>
> > Err sorry, I edited my text and forgot to clear out a line.
>
> > Ignore the line "This clears out the position "pointer" in the array
> > points."
>
> > The rest should be valid for you.  Let me know if that helps you out.
>
> > On Tue, Jun 15, 2010 at 11:40 AM, Nathan Raley  wrote:
> > > Well if you are wanting to set clear the entire array you should do:
> > > points = [];
>
> > > This clears out the position "pointer" in the array points.
>
> > > If you want to remove only the last position you do it as:
> > > points.pop();
>
> > > If you want to remove a specific element at a specific location you do:
> > > points.removeAt(i);
> > > Where i is the position you want cleared out.
>
> > > This help any?
>
> > > On Tue, Jun 15, 2010 at 11:29 AM, Pil  wrote:
>
> > >> On Jun 15, 6:05 pm, Nathan Raley  wrote:
> > >> > Did you try points = [];?
>
> > >> Yes, this doesn't work when I say
>
> > >> poly.setPath(points);
>
> > >> i.e. no polyline will appear. When I use a MVCArray all works well.
> > >> The MVCArray should be shared alternately between a Polyline and a
> > >> Polygon. This all works well - but I found no way to set the elements
> > >> of the MVCArray to 0.
>
> > >> --
> > >> 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...@googlegroups.com.
> > >> To unsubscribe from this group, send email to
> > >> google-maps-js-api-v3+unsubscr...@googlegroups.com > >>  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...@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 on line 8 while panning around in street view...

2010-06-15 Thread Chad Killingsworth
What do you do on your standalone map to get the pano to show? I
enabled it with DOM Manipulation but it wasn't tied to anything.

Also, you have a GUnload function defined on the body tag. That's not
needed in v3 and it's causing a javascript error.

Chad Killingsworth

On Jun 15, 10:15 am, Nathan Raley  wrote:
> Okay, giving another status update.
>
> It appears that if I drag to pan around before using the control to pan
> around, I don't get the error crossing that intersection.
>
> However, if I reset the pano position and only use the arrows, I get the
> error each time I pass by.
>
> Could it have something to do with the control setting the panorama position
> and doing the pan to in the street view?  Is there a way I could add error
> handling to the event that is fired off during the pan to and if it fires
> off an error catch it in a try catch?
>
>
>
> On Tue, Jun 15, 2010 at 10:03 AM, Nathan Raley  wrote:
> > And further analysis states that it is expecting a '{'
>
> > On Tue, Jun 15, 2010 at 10:02 AM, Nathan Raley wrote:
>
> >> Another note, using Microsoft Script editor instead of Visual Studio it is
> >> showing the error at line 15:
> >> function Zy(a,b,c,d,e,f,g,h)
>
> >> On Tue, Jun 15, 2010 at 9:58 AM, Nathan Raley wrote:
>
> >>> One of the intersections my embedded application is getting an error at
> >>> is Wilson and Felicia.
>
> >>> On Tue, Jun 15, 2010 at 9:53 AM, Nathan Raley wrote:
>
>  Link is at:
> http://www.suntransformer.com/peter/GoogleAPI3/GoogleAPIv3test.html
>
>  Although
>  I haven't been able to reproduce it in the standalone.  However, I do 
>  still
>  receive the error at the same intersections every time in the street 
>  view on
>  the one embedded in my c++ application.  It is even triggering this when 
>  the
>  markers aren't present in the street view panorama.
>
>  So it's not marker related.  Any other ideas?

-- 
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...@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 a MVCArray be cleared?

2010-06-15 Thread Pil
When I access a normal array with the method of an MVCArray I get an
error

Error: points.removeAt is not a function


But it seems I cannot force the polyline to use my own provided
MVCArray.
The creating of a polyline/polygon seems to include the creation of an
implied MVCArray. So there seems no possibility that a polyline and a
polygon can share the same MVCArray alternately.


On Jun 15, 6:41 pm, Nathan Raley  wrote:
> Err sorry, I edited my text and forgot to clear out a line.
>
> Ignore the line "This clears out the position "pointer" in the array
> points."
>
> The rest should be valid for you.  Let me know if that helps you out.
>
> On Tue, Jun 15, 2010 at 11:40 AM, Nathan Raley  wrote:
> > Well if you are wanting to set clear the entire array you should do:
> > points = [];
>
> > This clears out the position "pointer" in the array points.
>
> > If you want to remove only the last position you do it as:
> > points.pop();
>
> > If you want to remove a specific element at a specific location you do:
> > points.removeAt(i);
> > Where i is the position you want cleared out.
>
> > This help any?
>
> > On Tue, Jun 15, 2010 at 11:29 AM, Pil  wrote:
>
> >> On Jun 15, 6:05 pm, Nathan Raley  wrote:
> >> > Did you try points = [];?
>
> >> Yes, this doesn't work when I say
>
> >> poly.setPath(points);
>
> >> i.e. no polyline will appear. When I use a MVCArray all works well.
> >> The MVCArray should be shared alternately between a Polyline and a
> >> Polygon. This all works well - but I found no way to set the elements
> >> of the MVCArray to 0.
>
> >> --
> >> 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...@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...@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 a MVCArray be cleared?

2010-06-15 Thread Chad Killingsworth
Standard JavaScript array methods/operations won't work on MVCArrays.

Try:

while(points.getLength() > 0) points.pop();

Chad Killingsworth

On Jun 15, 11:48 am, Nathan Raley  wrote:
> Your second one is what I use to clear mine out.
>
> On Tue, Jun 15, 2010 at 11:44 AM, Jason Sanford wrote:
>
>
>
> > Just a quick guess but would this work:
>
> > myMvcArray.forEach(function(item,index){
> >   myMvcArray.removeAt(index);
> > });
>
> > If not how about:
>
> > for (i=0;i >   myMvcArray.removeAt(i);
> > }
>
> > I don't know if these work but glancing at the docs (
> >http://code.google.com/apis/maps/documentation/javascript/reference.h...)
> > that's what I would guess.
>
> > On Tue, Jun 15, 2010 at 12:29 PM, Pil  wrote:
>
> >> On Jun 15, 6:05 pm, Nathan Raley  wrote:
> >> > Did you try points = [];?
>
> >> Yes, this doesn't work when I say
>
> >> poly.setPath(points);
>
> >> i.e. no polyline will appear. When I use a MVCArray all works well.
> >> The MVCArray should be shared alternately between a Polyline and a
> >> Polygon. This all works well - but I found no way to set the elements
> >> of the MVCArray to 0.
>
> >> --
> >> 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...@googlegroups.com.
> >> To unsubscribe from this group, send email to
> >> google-maps-js-api-v3+unsubscr...@googlegroups.com >>  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...@googlegroups.com.
> > To unsubscribe from this group, send email to
> > google-maps-js-api-v3+unsubscr...@googlegroups.com > 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...@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 can a MVCArray be cleared?

2010-06-15 Thread Nathan Raley
Your second one is what I use to clear mine out.

On Tue, Jun 15, 2010 at 11:44 AM, Jason Sanford wrote:

> Just a quick guess but would this work:
>
> myMvcArray.forEach(function(item,index){
>   myMvcArray.removeAt(index);
> });
>
> If not how about:
>
> for (i=0;i   myMvcArray.removeAt(i);
> }
>
> I don't know if these work but glancing at the docs (
> http://code.google.com/apis/maps/documentation/javascript/reference.html#MVCArray)
> that's what I would guess.
>
>
> On Tue, Jun 15, 2010 at 12:29 PM, Pil  wrote:
>
>>
>>
>> On Jun 15, 6:05 pm, Nathan Raley  wrote:
>> > Did you try points = [];?
>>
>> Yes, this doesn't work when I say
>>
>> poly.setPath(points);
>>
>> i.e. no polyline will appear. When I use a MVCArray all works well.
>> The MVCArray should be shared alternately between a Polyline and a
>> Polygon. This all works well - but I found no way to set the elements
>> of the MVCArray to 0.
>>
>> --
>> 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...@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...@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...@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 can a MVCArray be cleared?

2010-06-15 Thread Jason Sanford
Just a quick guess but would this work:

myMvcArray.forEach(function(item,index){
  myMvcArray.removeAt(index);
});

If not how about:

for (i=0;ihttp://code.google.com/apis/maps/documentation/javascript/reference.html#MVCArray)
that's what I would guess.

On Tue, Jun 15, 2010 at 12:29 PM, Pil  wrote:

>
>
> On Jun 15, 6:05 pm, Nathan Raley  wrote:
> > Did you try points = [];?
>
> Yes, this doesn't work when I say
>
> poly.setPath(points);
>
> i.e. no polyline will appear. When I use a MVCArray all works well.
> The MVCArray should be shared alternately between a Polyline and a
> Polygon. This all works well - but I found no way to set the elements
> of the MVCArray to 0.
>
> --
> 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...@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...@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 can a MVCArray be cleared?

2010-06-15 Thread Nathan Raley
Err sorry, I edited my text and forgot to clear out a line.

Ignore the line "This clears out the position "pointer" in the array
points."

The rest should be valid for you.  Let me know if that helps you out.

On Tue, Jun 15, 2010 at 11:40 AM, Nathan Raley  wrote:

> Well if you are wanting to set clear the entire array you should do:
> points = [];
>
> This clears out the position "pointer" in the array points.
>
> If you want to remove only the last position you do it as:
> points.pop();
>
> If you want to remove a specific element at a specific location you do:
> points.removeAt(i);
> Where i is the position you want cleared out.
>
> This help any?
>
> On Tue, Jun 15, 2010 at 11:29 AM, Pil  wrote:
>
>>
>>
>> On Jun 15, 6:05 pm, Nathan Raley  wrote:
>> > Did you try points = [];?
>>
>> Yes, this doesn't work when I say
>>
>> poly.setPath(points);
>>
>> i.e. no polyline will appear. When I use a MVCArray all works well.
>> The MVCArray should be shared alternately between a Polyline and a
>> Polygon. This all works well - but I found no way to set the elements
>> of the MVCArray to 0.
>>
>> --
>> 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...@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...@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 can a MVCArray be cleared?

2010-06-15 Thread Nathan Raley
Well if you are wanting to set clear the entire array you should do:
points = [];

This clears out the position "pointer" in the array points.

If you want to remove only the last position you do it as:
points.pop();

If you want to remove a specific element at a specific location you do:
points.removeAt(i);
Where i is the position you want cleared out.

This help any?

On Tue, Jun 15, 2010 at 11:29 AM, Pil  wrote:

>
>
> On Jun 15, 6:05 pm, Nathan Raley  wrote:
> > Did you try points = [];?
>
> Yes, this doesn't work when I say
>
> poly.setPath(points);
>
> i.e. no polyline will appear. When I use a MVCArray all works well.
> The MVCArray should be shared alternately between a Polyline and a
> Polygon. This all works well - but I found no way to set the elements
> of the MVCArray to 0.
>
> --
> 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...@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...@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 a MVCArray be cleared?

2010-06-15 Thread Pil


On Jun 15, 6:05 pm, Nathan Raley  wrote:
> Did you try points = [];?

Yes, this doesn't work when I say

poly.setPath(points);

i.e. no polyline will appear. When I use a MVCArray all works well.
The MVCArray should be shared alternately between a Polyline and a
Polygon. This all works well - but I found no way to set the elements
of the MVCArray to 0.

-- 
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...@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] How can a MVCArray be cleared?

2010-06-15 Thread Nathan Raley
Did you try points = [];?

On Tue, Jun 15, 2010 at 10:52 AM, Pil  wrote:

> With
>
> var points = new google.maps.MVCArray();
>
> I am creating a MVCArray for the path of a Polyline/Polygon.
>
> How can I clear this array. With 'clear' I mean set it to 0.
>
> --
> 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...@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...@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 can a MVCArray be cleared?

2010-06-15 Thread Pil
With

var points = new google.maps.MVCArray();

I am creating a MVCArray for the path of a Polyline/Polygon.

How can I clear this array. With 'clear' I mean set it to 0.

-- 
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...@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 Type ID Text

2010-06-15 Thread Jason Sanford
Is there an easy way to change the default text for the default map types
("Map","Terrain","Satellite","Hybrid")? I ask because I'm using a custom
imageMapType by default and want to make sure users which maps are Google's
and which are mine. Essentially I want to change "Map" to "Google Basemap",
"Terrain" to "Google Terrain", etc. I know I can use whatever text I want
when I create a new imageMapType but I'd rather just change what's there
than recreate all of Google's imageMapTypes just to change the button 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...@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: Error on line 8 while panning around in street view...

2010-06-15 Thread Nathan Raley
Okay, giving another status update.

It appears that if I drag to pan around before using the control to pan
around, I don't get the error crossing that intersection.

However, if I reset the pano position and only use the arrows, I get the
error each time I pass by.

Could it have something to do with the control setting the panorama position
and doing the pan to in the street view?  Is there a way I could add error
handling to the event that is fired off during the pan to and if it fires
off an error catch it in a try catch?

On Tue, Jun 15, 2010 at 10:03 AM, Nathan Raley  wrote:

> And further analysis states that it is expecting a '{'
>
> On Tue, Jun 15, 2010 at 10:02 AM, Nathan Raley wrote:
>
>> Another note, using Microsoft Script editor instead of Visual Studio it is
>> showing the error at line 15:
>> function Zy(a,b,c,d,e,f,g,h)
>>
>> On Tue, Jun 15, 2010 at 9:58 AM, Nathan Raley wrote:
>>
>>> One of the intersections my embedded application is getting an error at
>>> is Wilson and Felicia.
>>>
>>> On Tue, Jun 15, 2010 at 9:53 AM, Nathan Raley wrote:
>>>
 Link is at:
 http://www.suntransformer.com/peter/GoogleAPI3/GoogleAPIv3test.html

 Although
 I haven't been able to reproduce it in the standalone.  However, I do still
 receive the error at the same intersections every time in the street view 
 on
 the one embedded in my c++ application.  It is even triggering this when 
 the
 markers aren't present in the street view panorama.

 So it's not marker related.  Any other ideas?



>>>
>>
>

-- 
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...@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 does one add a Marker to both the regular map and the custom panorama?

2010-06-15 Thread Nathan Raley
Yea, it was a bit of a pain but I added the markers I needed by creating
basically a carbon copy of the other marker.  Then I added events on the
drag and dragend to set the position of the marker on the other object, be
it the map or the pano.  Really wish it was easier to tie these two together
than this.  It wasn't necessarily hard but it does require the user to
create double the amount of markers they would previously be required to
create.

Even if we could get the marker manager to handle the markers inside the
panorama that would be another solution to this as I could add the same
marker to 2 different marker managers.  Either solution would be great.

On Tue, Jun 15, 2010 at 8:57 AM, Chad Killingsworth <
chadkillingswo...@missouristate.edu> wrote:

> I've seen several use cases come up with this sort of thing. I wonder
> if we ask nicely if the Marker object can expose position as an
> MVCObject property? Then you could bind and be notified of position
> changes.
>
> I've filed a feature request for this:
> http://code.google.com/p/gmaps-api-issues/issues/detail?id=2491
> You can star it to both vote for it and track its progress.
>
> Chad Killingsworth
>
> On Jun 15, 7:21 am, Cartolog - Map Experts  wrote:
> > Hi,
> > When the drag event of one marker is triggered, move the second marker
> > by setting its new position
> >
> > Itay
> > Cartolog - Map Expertshttp://www.cartolog.com
> >
> > On Jun 14, 9:12 pm, nlraley  wrote:
> >
> >
> >
> > > Is there anyway to link the marker dragging between the 2 markers if I
> > > create 2 separate markers?
> >
> > > On Jun 14, 8:12 am, Nathan Raley  wrote:
> >
> > > > Okay, let me make sure I have this right, so as long as I am
> specifying that
> > > > the street view panorama is to be placed in a div that I have defined
> I have
> > > > to create 2 separate markers in order to have them placed both on the
> > > > regular map and on the street view?
> >
> > > > On Fri, Jun 11, 2010 at 5:46 PM, Marc Ridey 
> wrote:
> > > > > You currently need to create two markers.
> >
> > > > > On Sat, Jun 12, 2010 at 5:55 AM, Nathan Raley 
> wrote:
> >
> > > > >> I have a custom panorama and I'd like to add my markers to both
> the map
> > > > >> and the pano, the pano is in a div on the bottom right of the map
> so they
> > > > >> are both viewable at the same time, however; once I set the map
> for the
> > > > >> markers to the pano it takes them off the map.  How can I
> accomplish both?
> > > > >>  Or do I just need to create 2 markers for each marker I want to
> add to
> > > > >> both?
> >
> > > > >> Thanks,
> > > > >> Nathan
> >
> > > > >> --
> > > > >> 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...@googlegroups.com.
> > > > >> To unsubscribe from this group, send email to
> > > > >> google-maps-js-api-v3+unsubscr...@googlegroups.com 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...@googlegroups.com.
> > > > > To unsubscribe from this group, send email to
> > > > > google-maps-js-api-v3+unsubscr...@googlegroups.com unsubscr...@googlegroups.com>
> > > > > .
> > > > > For more options, visit this group at
> > > > >http://groups.google.com/group/google-maps-js-api-v3?hl=en.-Hidequoted 
> > > > >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...@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...@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: Error on line 8 while panning around in street view...

2010-06-15 Thread Nathan Raley
And further analysis states that it is expecting a '{'

On Tue, Jun 15, 2010 at 10:02 AM, Nathan Raley  wrote:

> Another note, using Microsoft Script editor instead of Visual Studio it is
> showing the error at line 15:
> function Zy(a,b,c,d,e,f,g,h)
>
> On Tue, Jun 15, 2010 at 9:58 AM, Nathan Raley  wrote:
>
>> One of the intersections my embedded application is getting an error at is
>> Wilson and Felicia.
>>
>> On Tue, Jun 15, 2010 at 9:53 AM, Nathan Raley wrote:
>>
>>> Link is at:
>>> http://www.suntransformer.com/peter/GoogleAPI3/GoogleAPIv3test.html
>>>
>>> Although
>>> I haven't been able to reproduce it in the standalone.  However, I do still
>>> receive the error at the same intersections every time in the street view on
>>> the one embedded in my c++ application.  It is even triggering this when the
>>> markers aren't present in the street view panorama.
>>>
>>> So it's not marker related.  Any other ideas?
>>>
>>>
>>>
>>
>

-- 
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...@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: Error on line 8 while panning around in street view...

2010-06-15 Thread Nathan Raley
Another note, using Microsoft Script editor instead of Visual Studio it is
showing the error at line 15:
function Zy(a,b,c,d,e,f,g,h)

On Tue, Jun 15, 2010 at 9:58 AM, Nathan Raley  wrote:

> One of the intersections my embedded application is getting an error at is
> Wilson and Felicia.
>
> On Tue, Jun 15, 2010 at 9:53 AM, Nathan Raley  wrote:
>
>> Link is at:
>> http://www.suntransformer.com/peter/GoogleAPI3/GoogleAPIv3test.html
>>
>> Although
>> I haven't been able to reproduce it in the standalone.  However, I do still
>> receive the error at the same intersections every time in the street view on
>> the one embedded in my c++ application.  It is even triggering this when the
>> markers aren't present in the street view panorama.
>>
>> So it's not marker related.  Any other ideas?
>>
>>
>>
>

-- 
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...@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: Error on line 8 while panning around in street view...

2010-06-15 Thread Nathan Raley
One of the intersections my embedded application is getting an error at is
Wilson and Felicia.

On Tue, Jun 15, 2010 at 9:53 AM, Nathan Raley  wrote:

> Link is at:
> http://www.suntransformer.com/peter/GoogleAPI3/GoogleAPIv3test.html
>
> Although
> I haven't been able to reproduce it in the standalone.  However, I do still
> receive the error at the same intersections every time in the street view on
> the one embedded in my c++ application.  It is even triggering this when the
> markers aren't present in the street view panorama.
>
> So it's not marker related.  Any other ideas?
>
>
>

-- 
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...@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: Error on line 8 while panning around in street view...

2010-06-15 Thread Nathan Raley
Link is at:
http://www.suntransformer.com/peter/GoogleAPI3/GoogleAPIv3test.html

Although
I haven't been able to reproduce it in the standalone.  However, I do still
receive the error at the same intersections every time in the street view on
the one embedded in my c++ application.  It is even triggering this when the
markers aren't present in the street view panorama.

So it's not marker related.  Any other ideas?

-- 
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...@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 displaying IE8/Firefox

2010-06-15 Thread SamMP
Thanks for the help everyboby.

I found the problem.

It was 'http://maps.google.com/
maps/api/
js?sensor=false" /> '

should have been '