[Google Maps API v3] Re: Problem with markers on StreetView

2011-02-13 Thread tinem
Maybe NOT show any marker at all and zoom-in on the toiletbuilding
some more on StreetView would be better?

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: Problem with markers on StreetView

2011-02-13 Thread tinem

On Feb 13, 9:41 am, tinem ti...@email.dk wrote:
 Maybe NOT show any marker at all and zoom-in on the toiletbuilding
 some more on StreetView would be better?

http://code.google.com/intl/da-DK/apis/maps/documentation/javascript/services.html

zoom (default 1) defines the zoom level of this view (effectively
proscribing the field of view) with 0 being fully zoomed-out. Most
Street View locations support zoom levels from 0 to 3, inclusive.

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: Problem with markers on StreetView

2011-02-13 Thread tinem
line: 377
$marker._nearestStreetView={panoId:$result.location.pano, initialPov:
{heading:getAngle($result.location.latLng, $markerOptions.position),
pitch:0, zoom:1}};

changed zoom from 0 to 1 which is default and think it looks better.
Don't know why Martin used 0 instead of 1?

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: Opening the map focussing on a country using the country code

2011-02-13 Thread Gerrit de Bolster
Thanks Chris,

Adding the parameter region=au does the job!

Gerrit.

On 13 feb, 00:44, Chris Broadfoot c...@google.com wrote:
 On Sun, Feb 13, 2011 at 7:13 AM, Gerrit de Bolster cbst...@home.nl wrote:

  I would like to have an answer from one of the Google employees as I
  believe that the Google Maps API is more than a mere street address
  geoder as you stated.

 Rossko is correct. Have a quick read of the documentation and you'll see
 that it mentions addresses a 
 lot!http://code.google.com/apis/maps/documentation/javascript/services.ht...

 Changing the region parameter may get you more relevant geocoder results.
 For example, I get Canada as a result when I specify 
 region=au:http://maps.googleapis.com/maps/api/geocode/json?address=CAsensor=fa...

 Rossko's suggestion of using your own lookup of ISO 3166-1 codes is an
 excellent one, and if it's exactly what you need (only lookups of these
 codes), then you should do that. The full list is published 
 here:http://www.iso.org/iso/english_country_names_and_code_elements

 Chris

 --http://twitter.com/broady

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: Problem with markers on StreetView

2011-02-13 Thread tinem
Still have the problem with InfoWindow - no one can help, please?

And problem with nid17.

If you see on
http://maps.google.com/maps?f=qsource=s_qhl=dageocode=q=Gammel+Strand+44,+1202+K%C3%B8benhavn,+Danmarksll=37.0625,-95.677068sspn=49.844639,79.013672ie=UTF8hq=hnear=Gammel+Strand+44,+1202+K%C3%B8benhavn,+K%C3%B8benhavn+K,+Danmarkll=55.677488,12.57823spn=0.008735,0.01929z=16iwloc=Alayer=ccbll=55.677473,12.578202panoid=4HiKpDUfujhj4vnMteXx9gcbp=12,335.15,,0,4.93

Here you can see the building. I have also used 55.677473,12.578202
but on my map you can't see the building and no marker. :-(

Don't know if I can do more about this?

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] first time user returns --- google.maps.GeocoderStatus.OVER_QUERY_LIMIT

2011-02-13 Thread Chris Erickson
I must be doing something wrong.  The first time I test the geocoder and it 
returned overlimit and then for each item (14 items in all)  
google.maps.GeocoderStatus.ZERO_RESULTS 
 
very odd since all I did was put a loop to process the array of addresses 
inside the codeAddress function provided in the geocode example.  As for the 
zero results it is either a bad address (my mistake)  or shut down due to 
the over limit flag I would guess.
 
any help would be appreciated.
 
Thanks,
Chris
 
 

 

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: first time user returns --- google.maps.GeocoderStatus.OVER_QUERY_LIMIT

2011-02-13 Thread Chris Erickson
Update---
using v3
 
the zero results was a me issue and has been resolved.
the over_query_limit alert still appears but the map works so just 
considering disabling the alert.

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Server side marker clustering

2011-02-13 Thread sgiddings
I have searched through this forum and have not found a satisfactory
answer.

Does there exist an article or tutorial explaining how to implement
server side clustering, including handling zoom level changes ?
I really am looking for clustering and not KML layer generation.

Simon

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



Re: [Google Maps API v3] Re: first time user returns --- google.maps.GeocoderStatus.OVER_QUERY_LIMIT

2011-02-13 Thread Andrew Leach
On 13 February 2011 16:38, Chris Erickson cerickso...@gmail.com wrote:
 the over_query_limit alert still appears but the map works so just
 considering disabling the alert.

Do you not think that status is provided in order to tell you
something? Like you're requesting results too quickly, perhaps?

(We can't tell: you haven't provided a link, but your description
indicates that that might be the reason)

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: Server side marker clustering

2011-02-13 Thread Esa
I don't know status of the project but some edits been done two weeks
ago
https://github.com/tuupola/php_google_maps

I also accidentally found this:
http://blog.kodai.lt/

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Change marker icon for lines and shapes

2011-02-13 Thread John
Hello,

I have a map up-and-running and I can place a point, line and shape on the 
map. It's also possible to read points from a mysql database. So far so good 
(took me weeks but okay ;-) ). When I draw a line or a shape I get the same 
markers. I really would like to have small dots or small quadrangles in 
stead (or nothing, even better). I assume that it must be easy to change 
this but after a few days of trial-and-error I'm wondering if someone can 
help me out with this. 

My map can be found at: 
http://www.houdstadsweidengroen.nl/maps/map_v3nw15.html

Any help would be great, thanks.

John

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



Re: [Google Maps API v3] Re: first time user returns --- google.maps.GeocoderStatus.OVER_QUERY_LIMIT

2011-02-13 Thread Chris Erickson
thank you for your quick response.  I am working internally right now so 
don't have a link but I have attached the javascript code. I think it is 
very straight forward with only minor modification to the examples.  I 
haven't worked with any mapping stuff since deCarta several years ago so I 
am very rusty and I appreciate your patience.  
If you could also explain why the info content seems to be stuck on the 
first element and the id, title seem to be stuck on the last element it 
would be appreciated as well.
 
thanks for the help,
Chris

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.

 var map;
var geocoder;
var infowindow = null;
var venues = new Array(['Central Florida', 'The Moat Sports Grill  ', '4250 
Alafaya Trail #100 Oviedo, FL 32765', '19:00', ' If 22 players are present for 
the first game, a $35 seat to Mini Deep Stack Tournament at the Daytona Beach 
Kennel Club and Poker Room will be awarded.*all prizes awarded at venues 
discretion.Phone Number:(407) 542-4983Web Site'], ['Central Florida', 'Corner 
Bistro  ', '1943 E Irlo Bronson Mem Hwy, Kissimmee, FL 34744 ', '19:00', ''], 
['Central Florida', 'Shotskis Food and Drink  ', '350 E. State Road 434, Winter 
Springs, FL 32708', '19:00', ' Happy Hour 2pm-7pm Everyday $2 Domestic Draft   
$2.50 Domestic BottleIf 22 players are present for the first game, a $35 seat 
to Mini Deep Stack Tournament at the Daytona Beach Kennel Club and Poker Room 
will be awarded. *all prizes awarded at venues discretion.'], ['Central 
Florida', 'Orange Bowl Lanes  ', '1221 East Vine Street Kissimmee, FL 
34744-3545', '19:00', ''], ['Central Florida', 'El Porto  ', '981 South Orange 
Blossom Trail Apopka, FL 32703-3712', '18:00', ''], ['Central Florida', 
'Clermont Bowling Center  ', '4 Westgate Plaza Clermont, FL 34711-2875', 
'19:00', ' Bounty night every Wednesday at the Alley. Take out the bounty and 
win a $35 buy-in to the THPT mini deep stacks tournament at DBKC  * all prizes 
awarded at venues discretion.Phone Number:(352) 394-2566Web Site'], ['Central 
Florida', 'Clermont Bowling Center  ', '4 Westgate Plaza Clermont, FL 
34711-2875', '19:00', ' Friday Late night at the Alley. One winner of a later 
game on Friday night will win a 100 dollar buy-in to Daytona Beach Kennel 
Club.* all prizes awarded at venues discretion.'], ['Central Florida', 'Brick 
and Fire  ', '1410 Semoran Boulevard Casselberry, FL 32707 ', '18:00', ' If 22 
players are present for the first game, a $35 seat to Mini Deep Stack 
Tournament at the Daytona Beach Kennel Club and Poker Room will be awarded.*all 
prizes awarded at venues discretion.Phone Number:(321) 332-6430Web Site'], 
['Central Florida', 'Trung Nguyen Cafe  ', '1206 E Colonial Dr Orlando, FL 
32803 ', '12:00', ''], ['Central Florida', 'The Barn  ', '1200 South French 
Avenue Sanford, FL 32771-3368', '19:00', ''], ['Central Florida', 
'International Sports Bar', '2104 Michigan Ave Kissimmee FL 34744', '19:00', 
''], ['Central Florida', 'Cafe Panuzzos ', '1003 Lockwood Boulevard Oviedo, FL 
32765', '18:00', '   If 22 or more players are present for the first game 
of the night the winner will receive a $35 buy-in to The Texas Hold?em Poker 
Tours Mini Deep Stack Tournament hosted by The Daytona Beach Kennel Club. * all 
prizes awarded at venues discretion.'], ['Central Florida', 'Beef O Bradys 
Clermont  ', '1642 East Hwy 50 Clermont, FL 34711', '19:00', '']);

infowindow = new google.maps.InfoWindow({content: 'holding?'});

function body_onload() {
initialize();
};

function codeAddress() {
for (var i = 0, len = venues.length - 1; i  len; i++) {
var venue = venues[i];
var address = venue[2];
var title = venue[1];
var content = venue[4];
geocoder.geocode({ 'address': address }, function (results, status) 
{
if (status == google.maps.GeocoderStatus.OK) {
map.setCenter(results[0].geometry.location);
var point = results[0].geometry.location;
var marker = new google.maps.Marker({ map: map, title: 
title, position: point, html: content, id: i,region: });
var infowindow = new google.maps.InfoWindow({ content: 
content });
google.maps.event.addListener(marker, 'click', function () {
alert(this.id);
infowindow.setContent(this.html);
infowindow.open(map, this);
});
} else {
 alert(Geocode was not successful for the following 
reason:  + 

[Google Maps API v3] Re: Multiple groundoverlays problem: first one displays, others do not

2011-02-13 Thread Rossko
 Here's the page at 
 issue:http://www.orphicwars.com/realtime/newindex.php?mode=game

Have you zoomed out to view the world? There are some strange smears
going the long way around the world.
   var ne1 = new google.maps.LatLng(34.283624,-118.55484);
   var sw1 = new google.maps.LatLng(33.828522,-117.868194);
I believe your NE is more westerly than your SW

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Showing progression along a route

2011-02-13 Thread Redbaron
I'm not sure if this is possible, so I thought I would as first before 
looking into it.

I want to be able to define a route, start and end point, and also be able 
to show the current location on that route. 

ie. If I have a route that is 345 kms and I have traveled 56 kms, I want to 
be able to place a marker 56 kms into the route.
I know how to request the route and display it, but I have no idea if it is 
possible to query the lat/long that you would be at x km into the route.

Thanks,

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



Re: [Google Maps API v3] Showing progression along a route

2011-02-13 Thread Chris Broadfoot
It's possible - look at the functions in the spherical geometry library.
That may get you started.

But first, make sure this use case is in accordance with the ToS,
particularly 10.9:
http://code.google.com/apis/maps/terms.html

Chris

-- 
http://twitter.com/broady

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



Re: [Google Maps API v3] Re: first time user returns --- google.maps.GeocoderStatus.OVER_QUERY_LIMIT

2011-02-13 Thread Chris Erickson
 Update -- the other issues were a result of the geocoder callback.  As soon 
as I moved the geocoding up to a web service and passed the clients latlng 
to be mapped almost everything started working correctly.
 
However, the over_query_limit still fires off on the very first record every 
time.  It is a very odd issue especially when you consider that I am 
processing synchronously now.  I can program around that so no big deal.
 
Thanks again,
Chris

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Removing the red markers from search results

2011-02-13 Thread GetMeThere
Hi,
I am trying to find a solution to this:
Get rid of the Red Markers when passing co-ordinates in map search.
Only have the green location marker.

When you click on the map, we currently only pass the latitude/
longitude co-ordinates to Google. The default search option is “ALL”
but you can define, locations, businesses, real-estate or user-created
maps, once you are in the Google window. If you select “businesses”
only the ‘A’ in the map below disappears because it is showing as a
defined “location” that is displayed because ‘ALL’ is the default
display option. You are only left with the green pin and it will
display the GS office. However, if there were other businesses
registered in Google maps in the same locality they would show up on
the map as lettered red pins.

I’m not sure if we can display a different default other than ‘ALL’
when we pass the parameters.

See: http://maps.google.com/maps?q=51.2844702262923,0.516909470183546iwloc=A

Many Thanks
Glenn

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: Showing progression along a route

2011-02-13 Thread geocode...@gmail.com
On Feb 13, 2:10 pm, Redbaron dslauenwh...@gmail.com wrote:
 I'm not sure if this is possible, so I thought I would as first before
 looking into it.

 I want to be able to define a route, start and end point, and also be able
 to show the current location on that route.

 ie. If I have a route that is 345 kms and I have traveled 56 kms, I want to
 be able to place a marker 56 kms into the route.
 I know how to request the route and display it, but I have no idea if it is
 possible to query the lat/long that you would be at x km into the route.

Not exactly what you are asking for, but should give you an idea:
http://www.geocodezip.com/v3_animate_marker_directions.html
(written before the geometry library was available...)

  -- Larry



 Thanks,

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: Removing the red markers from search results

2011-02-13 Thread Rossko
 See:http://maps.google.com/maps?q=51.2844702262923,0.516909470183546iwloc=A

This is a question for
http://www.google.com/support/forum/p/maps?hl=en
it's not about javascript 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-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Circle class

2011-02-13 Thread Gregory Herman
I'm trying to figure out how the Circle class works because I would like to 
express the fillOpacity of a Circle as a function of theta (the arc angle 
relative to due north) and another variable (var b), so that the opacity 
will be 1 from theta = 0 to theta = pi/2 (90 degrees) and 0 otherwise if b 
is a certain value, the opacity be 1 from theta=0 to pi and 0 otherwise if b 
is a different value, have the opacity be 1 from theta=0 to 3*pi/2 and 0 
otherwise if b is a different value, have it be 1 always if b is a fourth 
value, and have the opacity be 0 always otherwise.  Is this possible or will 
I have to attempt to figure out an alternative?  The other option I can 
think of is just drawing quarter-circles, half-circles, etc., but I don't 
see an easy way to do this without making a many-sided polygon which 
approximates a circle (unless there is an easy way to draw an arc some other 
way).  Any insights would be helpful.  Thank you in advance.

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: Google Maps reports File Not Found

2011-02-13 Thread jez
Thanks for all your help. I have been unable to resolve this problem,
so have shifted hosts. The host affected was VentraIP - 
http://www.ventraip.com.au/

For anyone else looking, a similar problem (and solution) to above is
reported here:
- http://www.crankfire.com/blog/?p=23
- 
http://groups.google.com/group/google-maps-api/browse_thread/thread/3a9ece02830693ea
- 
http://bbs.keyhole.com/ubb/ubbthreads.php?ubb=showflatNumber=569327site_id=1#import
- http://groups.google.com/group/google-maps-api/msg/df4db2d551c2753f?pli=1

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] circle class working yesterday now not working!

2011-02-13 Thread qbit
I had a gps accuracy circle set up on my map. As of today it has
stopped working. I have not altered my code either. Can anyone shed
some light on this. My site: http://www.weuni.com/
and a link to the js - http://www.weuni.com/scripts/original/myuni.js

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] circle class working yesterday now not working!

2011-02-13 Thread qbit
My accuracy circle was working until today. I have not altered the
code. Can anyone shed some light on this?
My site: http://www.weuni.com/

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: Multiple groundoverlays problem: first one displays, others do not

2011-02-13 Thread Brisket Gaming
That did it.  Sigh.  Switch a plus for a minus and suddenly it all
works.  Thanks.

On Feb 13, 2:08 pm, Rossko ros...@culzean.clara.co.uk wrote:
  Here's the page at 
  issue:http://www.orphicwars.com/realtime/newindex.php?mode=game

 Have you zoomed out to view the world? There are some strange smears
 going the long way around the world.
    var ne1 = new google.maps.LatLng(34.283624,-118.55484);
    var sw1 = new google.maps.LatLng(33.828522,-117.868194);
 I believe your NE is more westerly than your SW

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] street view panning without user interaction

2011-02-13 Thread pinacate
I'd like to create a streetview that continuously pans under
programmatic control. I've tried making a sequence of calls to
'setPov' and it works but its very slow and jerky. But under user
controls panning is nice and smooth and fast. Is there a way to get
similar smoothness programmatically?

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



Re: [Google Maps API v3] circle class working yesterday now not working!

2011-02-13 Thread Chris Broadfoot
Seems to work for me. Are you sure your GPS is working in the same way as it
did before today?

BTW, the JS you linked to originally is not actually being used on the site

-- 
http://twitter.com/broady

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: circle class working yesterday now not working!

2011-02-13 Thread qbit
Chris please delete this thread. It seems my server was running old
files, I guess they crashed and restored an old backup. Luckily I had
backed up to my laptop yesterday.  Thanks for investigating.

On Feb 14, 3:17 pm, Chris Broadfoot c...@google.com wrote:
 Seems to work for me. Are you sure your GPS is working in the same way as it
 did before today?

 BTW, the JS you linked to originally is not actually being used on the site

 --http://twitter.com/broady

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: Australian Traffic Data - not showing in map API?

2011-02-13 Thread whatever
Thanks Chris..

Could you add a column 'API supported' to
the spreadsheet

http://code.google.com/apis/maps/faq.html#whatcountries

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



Re: [Google Maps API v3] Re: Australian Traffic Data - not showing in map API?

2011-02-13 Thread Chris Broadfoot
That spreadsheet is API-only. Is it missing something?

-- 
http://twitter.com/broady

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Getting 407 for jsapi and main.js.....

2011-02-13 Thread panki j
Dear Google Team,

One small help from you. While running my Gmap application on v3, i noticed
one js file from Google (default.I.js,the highlighted line) takes a long
time. So i just downloaded that file from google.com and put it in our
application folder itself. Now i am able to save around 15 sec of overall
ececution time and map is working fine also. But i am getting 407 status
from google.com. I am using premier id for my application.

Please compare the two highlighted lines to get every details.

My question is, am i violating any Licence agrement or i can go forward with
downloaded default.js.?




 *Time Taken* sent recievedmethodstatus code
0 .302  2177   568   GET   302  Redirect to
http://www.google.co.in/jsapi http://www.google.in/jsapi
1.310   406  20876  GET200javascript
http://www.google.co.in/jsapi
0.294  408 925 GET  200javascript
http://www.google.com/uds/?file=visualizationv=1
0.930  456 4143GET200javascript
http://maps.google.com/maps/api/js?key=notsuppliedv=3client=gme-hindustanunileversensor=false
   17.070 452   167080   GET   200  javascript
http://www.google.com/uds/api/visualization/1.0/fab2776b8607de53d917feca0782e77e/default.I.js
   0.108   42233678GET  200 javascript
http://maps.gstatic.com/intl/en_us/mapfiles/api-3/3/8/main.js






 0.212 620 17011   GET 200  html
http://in-maps.unilever.com/gmap/mahacoverage.jsp?moc=01.2010mcmoc=12.2010area=A3_NA310
 0.079 386 4603GET 407  html
http://www.google.in/jsapi
 0.464 48230285   GET 200  javascript
http://in-maps.unilever.com/gmap/javaScript/markerclusterer.js
 0.252 47418406   GET 200  javascript
http://in-maps.unilever.com/gmap/javaScript/support.js
0.145 474 3104GET 200  javascript
http://in-maps.unilever.com/gmap/javaScript/cluster.js
0.175 4803591 GET 200  javascript
http://in-maps.unilever.com/gmap/javaScript/searchcontrol.js
0.365 47712742   GET 200  javascript
http://in-maps.unilever.com/gmap/javaScript/draw_route.js
0.799 476166739 GET 200  javascript
http://in-maps.unilever.com/gmap/javaScript/default.I.js
 0.6572179568 GET 302  Redirect to
http://www.google.co.in/jsapi http://www.google.in/jsapi
 0.090676 4603GET 407  html
http://www.google.co.in/jsapi
 5.937246921219 GET 200  javascript
http://www.google.co.in/jsapi
 0.034742 4603   GET 407  html
http://maps.google.com/maps/api/js?key=notsuppliedv=3client=gme-hindustanunileversensor=false
1.510 2535 4155 GET 200  javascript
http://maps.google.com/maps/api/js?key=notsuppliedv=3client=gme-hindustanunileversensor=false
 0.021425  4603  GET 407  html
http://maps.gstatic.com/intl/en_us/mapfiles/api-3/4/0a/main.js
 0.126221833448 GET 200  javascript
http://maps.gstatic.com/intl/en_us/mapfiles/api-3/4/0a/main.js
0.158468  9167   GET 200  gif
http://in-maps.unilever.com/gmap/images/load.gif

+ 3:19.673   1.426 441 17176 GET 200 png
http://mt1.googleapis.com/vt?lyrs=m@142src=apiv3hl=en-USx=187y=112z=8s=G
+ 3:19.674   0.373 442 4603 GET 407 html
http://mt1.googleapis.com/vt?lyrs=m@142src=apiv3hl=en-USx=187y=113z=8s=Ga
+ 3:19.675   0.391 444 4603 GET 407 html
http://mt0.googleapis.com/vt?lyrs=m@142src=apiv3hl=en-USx=188y=112z=8s=Gali
+ 3:19.677   0.385 445 4603 GET 407 html
http://mt0.googleapis.com/vt?lyrs=m@142src=apiv3hl=en-USx=188y=113z=8s=Galil
+ 3:19.678   0.377 446 4603 GET 407 html
http://mt0.googleapis.com/vt?lyrs=m@142src=apiv3hl=en-USx=186y=112z=8s=Galile
+ 3:19.680   0.373 447 4603 GET 407 html
http://mt0.googleapis.com/vt?lyrs=m@142src=apiv3hl=en-USx=186y=113z=8s=Galileo
+ 3:19.681   0.374 440 4603 GET 407 html
http://mt1.googleapis.com/vt?lyrs=m@142src=apiv3hl=en-USx=187y=111z=8s
=
+ 3:19.685   0.365 443 4603 GET 407 html
http://mt1.googleapis.com/vt?lyrs=m@142src=apiv3hl=en-USx=187y=114z=8s=Gal

-- 
Warm Regards,

Pankaj Jha

P Go greenSave the Trees*.*

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: Australian Traffic Data - not showing in map API?

2011-02-13 Thread whatever
thanks

my mistake

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Traffic layer

2011-02-13 Thread whatever
Hi is there a way to get the
legend (Live Traffic Slow ..Fast) that appears in Google maps to
appear in the maps api
traffic layer somehow..

-- 
You received this message because you are subscribed to the Google Groups 
Google Maps JavaScript API v3 group.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.