[Google Maps API v3] Small Marker, Big Marker same code. Why the difference??

2011-09-14 Thread Ice
Hi So I've got markers set for a streetview but on some of my maps the marker seems to be smaller and deeper into the tile image. They both use the same code but yet I'm getting these discrepancies as you can see by these live examples. http://sleeping-out/member_details-MemberID-8856.html(corr

[Google Maps API v3] Re: Is it possible to add the location name before the address of each waypoint on DirectionsRenderer?

2011-09-14 Thread Dan
Is there an example other than the description of DirectionsLegs in the v3 API reference? -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-maps-js-

[Google Maps API v3] Re: Is it possible to add the location name before the address of each waypoint on DirectionsRenderer?

2011-09-14 Thread geocode...@gmail.com
On Sep 15, 12:09 am, Dan wrote: > i'm 95% done with my project and everything's in v3. The point is that you _can_ do it in v3, but it requires more work than v2. -- Larry > it's gonna be too much of a hassle and i'm running out of time. > so i will skip this part and use marker and infoWindo

[Google Maps API v3] Re: Is it possible to add the location name before the address of each waypoint on DirectionsRenderer?

2011-09-14 Thread Dan
i'm 95% done with my project and everything's in v3. it's gonna be too much of a hassle and i'm running out of time. so i will skip this part and use marker and infoWindow to make some alternatives. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaSc

[Google Maps API v3] Re: Is it possible to add the location name before the address of each waypoint on DirectionsRenderer?

2011-09-14 Thread geocode...@gmail.com
On Sep 14, 11:45 pm, Dan wrote: > no... :( Did you read comment #2? -- Larry > > On Sep 14, 8:02 pm, Martin™ wrote: > > > > > > > > > Hi. > > > Not with V3 of the API: > > >http://code.google.com/p/gmaps-api-issues/issues/detail?id=2775 > > > Martin. > > > On Sep 15, 12:48 am, Dan wrote

[Google Maps API v3] Re: Is it possible to add the location name before the address of each waypoint on DirectionsRenderer?

2011-09-14 Thread Dan
no... :( On Sep 14, 8:02 pm, Martin™ wrote: > Hi. > > Not with V3 of the API: > > http://code.google.com/p/gmaps-api-issues/issues/detail?id=2775 > > Martin. > > On Sep 15, 12:48 am, Dan wrote: > > > > > > > > > By applying the concept of this > > example:http://code.google.com/apis/maps/do

[Google Maps API v3] Re: How to cache server side geocodes

2011-09-14 Thread Martin™
Hi. How about first creating a MySQL table with columns 'md5', 'lat' and 'lng'. 'md5' will be a text type, 'lat' and 'lng' double type. Now create the query string that your server will send to Google, presumably something like: $geocode_query='http://maps.googleapis.com/maps/api/geocode/json? s

[Google Maps API v3] Re: Is it possible to add the location name before the address of each waypoint on DirectionsRenderer?

2011-09-14 Thread Martin™
Hi. Not with V3 of the API: http://code.google.com/p/gmaps-api-issues/issues/detail?id=2775 Martin. On Sep 15, 12:48 am, Dan wrote: > By applying the concept of this > example:http://code.google.com/apis/maps/documentation/javascript/examples/di... > > Is it possible to add the location name

[Google Maps API v3] Re: sidebar won't generate in IE

2011-09-14 Thread Rossko
> This is nuts!  It works fine for me at home with IE 8.0.6001.18702, but I've > tried it on two computers with IE 9 at my place of employment and all I see > is the first item in the sidebar. I suspect a timing race. I see one entry in IE on my slow PC ... eventually (several minutes). There's

[Google Maps API v3] Enterprise including of google map

2011-09-14 Thread gavinxyang
I have a google map on my page, which use google javascript to include. But I found no way to set my clientID. Even If I have clientID, how I can test in internal environment. The domain is different. -- You received this message because you are subscribed to the Google Groups "Google Maps Java

Re: [Google Maps API v3] sidebar won't generate in IE

2011-09-14 Thread Ralph
Running your page locally on my computer gives the same result, only one item in the sidebar. It would be a good idea to get rid of all HTML errrors first as IE is not so tolerant. A page should end with: But the is on line 239 and is on line 1013 and the map script in between the two.

Re: [Google Maps API v3] sidebar won't generate in IE

2011-09-14 Thread Nathan Taylor
This is nuts! It works fine for me at home with IE 8.0.6001.18702, but I've tried it on two computers with IE 9 at my place of employment and all I see is the first item in the sidebar. The rest of it is blank. So I dunno! On Wed, Sep 14, 2011 at 3:57 PM, Ralph wrote: > Sidebar works ok for m

Re: [Google Maps API v3] Markers not loading in IE7-9

2011-09-14 Thread Ralph
Just another thought, in query string's add a random variable http://www.lemonbricks.com/index.php?r=search/search&search=manchester&buy_rent=buy Something like this http://www.lemonbricks.com/index.php?r=search/search&search=manchester&buy_rent=buy&random=243629487098 It might not solve the p

[Google Maps API v3] Is it possible to add the location name before the address of each waypoint on DirectionsRenderer?

2011-09-14 Thread Dan
By applying the concept of this example: http://code.google.com/apis/maps/documentation/javascript/examples/directions-panel.html Is it possible to add the location name before the address of each waypoint on DirectionsRenderer? e.g.

Re: [Google Maps API v3] Tile query without referer in http header with Webkit

2011-09-14 Thread Ben Appleton
Browsers don't allow JS to control the referer header. I suggest using an "access token": 1 - When you serve the HTML page, include a private hash of the date. 2 - When your JS forms a tile URL, append the access token. 3 - When your tile server receives a request, verify the access token is recent

[Google Maps API v3] Re: How to set custom infoWindow of setOptions of google.maps.DirectionsRenderer()?

2011-09-14 Thread Dan
I figured out an alternative last night. create another new set up markers, and another new set of infoWindow, then setup their z-index to control with markers to display at the highest level. and for the infoWindow, i will just let it open automatically every time I opened up my map. On Sep 14,

Re: [Google Maps API v3] Markers not loading in IE7-9

2011-09-14 Thread Mike
Thanks for the reply. My "Temp Internet Files" in IE was set to automatic. When I changed it to "Every time I visit the webpage" then it loaded the markers on every search. Is there a way to set the "automatic" behaviour similar to the "Every time I visit the webpage" from my webserver? As not

[Google Maps API v3] Re: How to set custom infoWindow of setOptions of google.maps.DirectionsRenderer()?

2011-09-14 Thread xelawho
> If you specify  suppressInfoWindows: false you will still be able to click > on the individual intermediate directions steps and have the window popup to > show the location of the step while if you specify true you would not have > access to the intermediate windows. ah, yeah - I forgot about c

Re: [Google Maps API v3] Markers not loading in IE7-9

2011-09-14 Thread Ralph
What setting are you using for "Temporary Internet Files"? Mine is set to "Every time I visit the webpage" Just a thought. Ralph On 15/09/2011 00:56, Mike wrote: Hi Ralph, Well, I am glad that it is working...although with the tests on our end we find that we have to clear the browsing his

[Google Maps API v3] Re: How to detect change in directions RouteIndex?

2011-09-14 Thread xelawho
> it doesn't get driven when the user selects one of the suggested > alternative routes so I can't move my marker or update my total route > length/time totals. yes, I was having that problem (or something like it) until I put the listener inside the response callback. Or at least that's what I th

Re: [Google Maps API v3] Markers not loading in IE7-9

2011-09-14 Thread Mike
Hi Ralph, Well, I am glad that it is working...although with the tests on our end we find that we have to clear the browsing history each time before a new search in order to get markers displaying on every search. I don't understand why it would work for you but not for us. Do you have any fr

Re: [Google Maps API v3] Markers not loading in IE7-9

2011-09-14 Thread Ralph
Ok, I have tested with IE7 & IE8 and I get markers on all searches. Ralph On 15/09/2011 00:34, Mike wrote: Hi Ralph, In IE9 if you press F12 it will allow you to change the browser type to IE7 and IE8. Could you do this for me and see if the results are the same. I don't understand because

Re: [Google Maps API v3] Markers not loading in IE7-9

2011-09-14 Thread Mike
Hi Ralph, In IE9 if you press F12 it will allow you to change the browser type to IE7 and IE8. Could you do this for me and see if the results are the same. I don't understand because I've tested this on a slow laptop with IE9 and a fast desktop with IE9 both producing the same result; Not load

[Google Maps API v3] Re: How to detect change in directions RouteIndex?

2011-09-14 Thread MymsMan
I haven't solved the problem - I have a directions_changed event listener but it doesn't get driven when the user selects one of the suggested alternative routes so I can't move my marker or update my total route length/time totals. -- You received this message because you are subscribed to th

Re: [Google Maps API v3] Markers not loading in IE7-9

2011-09-14 Thread Ralph
Yes, I searched London, Manchester, South shields and back to London. Using this page http://www.lemonbricks.com/index.php?r=search/search&search=london&buy_rent=buy Ralph On 15/09/2011 00:00, Mike wrote: Hi Ralph, Thanks for that. However, did you try performing multiple searches? It seem

[Google Maps API v3] Re: How to set custom infoWindow of setOptions of google.maps.DirectionsRenderer()?

2011-09-14 Thread MymsMan
The description of the infoWindow option is: "T*he InfoWindow in which to render text information when a marker is clicked. Existing info window content will be overwritten and its position moved. If no info window is specified, the DirectionsRenderer will create and use its own info window. Thi

Re: [Google Maps API v3] Markers not loading in IE7-9

2011-09-14 Thread Mike
Hi Ralph, Thanks for that. However, did you try performing multiple searches? It seemed to load up markers on the first search but then on further searches the markers failed to load. Thanks, Mike -- You received this message because you are subscribed to the Google Groups "Google Maps JavaS

Re: [Google Maps API v3] Re: Map only displaying 1 set of pins when there is 4 in IE7 & IE8

2011-09-14 Thread Ralph
Yes, it is, at least that's where I can see it. Ralph On 14/09/2011 23:51, MymsMan wrote: Is the 'Queen Street Mill Textile Museum Harle Syke Burnley' really in the middle of the Irish sea? -- You received this message because you are subscribed to the Google Groups "Google Maps JavaSc

Re: [Google Maps API v3] sidebar won't generate in IE

2011-09-14 Thread Ralph
Sidebar works ok for me in IE9 Ralph On 14/09/2011 20:32, Nate_LR wrote: Here is a link to my map. http://www.geology.ar.gov/geohazards/guy_greenbrier_eq_map.htm I'm about to lose my mind trying figure out why the sidebar won't generate in IE. It works fine in Firefox. Thanks -- You

Re: [Google Maps API v3] Markers not loading in IE7-9

2011-09-14 Thread Ralph
Seems to working ok for me using IE9, I get markers on the map. Ralph On 14/09/2011 17:36, Mike wrote: Hi, There is a problem with my Gmap loading markers in IE7 - 9. On the first search the map will load correctly along with the markers. The problem is when a new search is made, the map wi

[Google Maps API v3] Re: How to detect change in directions RouteIndex?

2011-09-14 Thread xelawho
> No suggestions? dunno if you solved this one yet, but this helped me with what sounds like a similar problem: google.maps.event.addListener(directionsDisplay, 'directions_changed', function() { infowindow1.setPosition(directionsDisplay.dragResult.routes[0].legs[0].steps[0].start_location);

[Google Maps API v3] Re: Map only displaying 1 set of pins when there is 4 in IE7 & IE8

2011-09-14 Thread MymsMan
Is the 'Queen Street Mill Textile MuseumHarle Syke Burnley' really in the middle of the Irish sea? -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To view this discussion on the web visit https://groups.google.com/d/msg/google

[Google Maps API v3] Re: Map only displaying 1 set of pins when there is 4 in IE7 & IE8

2011-09-14 Thread geocode...@gmail.com
On Sep 14, 12:52 am, Steven Taylor wrote: > Hi, > > I wonder if you could help me fix this cross browser issue. The site > I'm talking about ishttp://www.artsmap.org.uk/ > > On the home page in firefox and IE9 it displays 4 sets of pins, pink > green, blue and light blue. In IE7 & 8 it only displa

[Google Maps API v3] Re: sidebar won't generate in IE

2011-09-14 Thread geocode...@gmail.com
On Sep 14, 10:32 am, Nate_LR wrote: > Here is a link to my > map.http://www.geology.ar.gov/geohazards/guy_greenbrier_eq_map.htm > > I'm about to lose my mind trying figure out why the sidebar won't > generate in IE.   What version of IE? It seems to work for me in IE8 (8.0.6001.18702) --

Re: [Google Maps API v3] How to cache server side geocodes

2011-09-14 Thread Mike
Hi, Thanks for the reply Barry but I couldn't find anything to help me cache the geocodes. The link also refers to gmaps v2, does that matter? I was looking for the correct way to store geocodes, look up new geocodes not in the cache and using the cache for map searching or looking up lat/long

[Google Maps API v3] Markers not loading in IE7-9

2011-09-14 Thread Mike
Hi, There is a problem with my Gmap loading markers in IE7 - 9. On the first search the map will load correctly along with the markers. The problem is when a new search is made, the map will load correctly but no markers appear. This problem does not occur in firefox, chrome, safari or opera.

[Google Maps API v3] Re: flyTo in JS

2011-09-14 Thread Booie
Yea, I have a similar implementation my self, but given the deprecation of flash api, I need to think about moving over at some point. I'm just looking for that animated pan & zoom effect that flash3dmap gives with the flyto method. -- You received this message because you are subscribed to t

[Google Maps API v3] Tile query without referer in http header with Webkit

2011-09-14 Thread surfish
Hello, I use GMap V3 JS API to connect to a WMS server (IGN in France) using ImageType class. The server requires the referer header for security (and commercial) reasons. My script works well on Mozilla (and IE 7+) web browsers but on Webkit based browsers (Chrome or Safari), my tiles queries

[Google Maps API v3] Map only displaying 1 set of pins when there is 4 in IE7 & IE8

2011-09-14 Thread Steven Taylor
Hi, I wonder if you could help me fix this cross browser issue. The site I'm talking about is http://www.artsmap.org.uk/ On the home page in firefox and IE9 it displays 4 sets of pins, pink green, blue and light blue. In IE7 & 8 it only displays 1 set of pins the pink ones. The pink markers/pins

[Google Maps API v3] Re: How to set custom infoWindow of setOptions of google.maps.DirectionsRenderer()?

2011-09-14 Thread xelawho
on second thoughts, no it shouldn't - that line should be: suppressInfoWindows: true, -- 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 fr

[Google Maps API v3] multi kml layers?

2011-09-14 Thread wang Chen
Hi, Is it possible to use 2 KML files on a Google map in the same time? One for paths (streets) and the other one for placemarks (interesting places such as restaurants, stores). The reason I can't put them in one kml file is that I need to display more than 1000 features. Thanks. -- You rec

[Google Maps API v3] sidebar won't generate in IE

2011-09-14 Thread Nate_LR
Here is a link to my map. http://www.geology.ar.gov/geohazards/guy_greenbrier_eq_map.htm I'm about to lose my mind trying figure out why the sidebar won't generate in IE. It works fine in Firefox. Thanks -- You received this message because you are subscribed to the Google Groups "Google

[Google Maps API v3] Re: How to set custom infoWindow of setOptions of google.maps.DirectionsRenderer()?

2011-09-14 Thread xelawho
> i just want the infoWindow to display my own information. it should work. do you have a link to your own map? -- 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@googlegr

[Google Maps API v3] Re: Set pov automatically to face dynamic markers(Streetview)

2011-09-14 Thread Ice
Thanks it worked great -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-maps-js-api-v3/-/eBJrCFsDiEYJ. To post to this group, send email to google-m

Re: [Google Maps API v3] Bottom of streetview images blurred??? Have I Done something wrong???

2011-09-14 Thread Andrew Leach
On 14 September 2011 09:01, Ice wrote: > Good day > > I would just like to know if there is a general problem when switching to > streetview > because the bottom third of the tiles on my streetviews are all blurry and I > don't > think it's corrupt or damaged google tiles so I can only assume I've

[Google Maps API v3] Re: Zoom Control Positioning - NavigationControlStyle vs. ZoomControlStyle

2011-09-14 Thread Enoch Lau (Google Employee)
http://code.google.com/apis/maps/documentation/javascript/reference.html#ZoomControlStyle -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-maps-js-a

[Google Maps API v3] Bottom of streetview images blurred??? Have I Done something wrong???

2011-09-14 Thread Ice
Good day I would just like to know if there is a general problem when switching to streetview because the bottom third of the tiles on my streetviews are all blurry and I don't think it's corrupt or damaged google tiles so I can only assume I've done something wrong does anyone have any solutio

[Google Maps API v3] Re: How to set custom infoWindow of setOptions of google.maps.DirectionsRenderer()?

2011-09-14 Thread Dan
i just want the infoWindow to display my own information. The original directionsDisplay markers are still needed because I still need to see the order alphabetical letters shown on each marker. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript

[Google Maps API v3] Zoom Control Positioning - NavigationControlStyle vs. ZoomControlStyle

2011-09-14 Thread DC
Hi, I've been asked to use ZoomControlStyle instead of NavigationControlStyle, since NavigationControlStyle is deprecated and therefore not working with Closure Compiler anymore. Unfortunately ZoomControlStyle isn't documented in the V3 reference. Can anyone advise me? Thanks...! Denis -- You

[Google Maps API v3] Re: How to set custom infoWindow of setOptions of google.maps.DirectionsRenderer()?

2011-09-14 Thread MymsMan
Are you attempting to have you own information appear at each of the waypoint markers instead of the normal direction renderer text? If so create your own marker and infowindow for each of the waypoints and end points, and change your options to be directionsDisplay.setOpti

[Google Maps API v3] How to set custom infoWindow of setOptions of google.maps.DirectionsRenderer()?

2011-09-14 Thread Dan
I have multiple waypoints made by using the reference of this example: http://code.google.com/apis/maps/documentation/javascript/examples/directions-panel.html Could anyone help me how to customize the infoWindow of the infoWindow of setOptions of google.maps.DirectionsRenderer()? My DirectionsR

[Google Maps API v3] Encoding issue in Places Autocomplete

2011-09-14 Thread eshoy
Hello, I've got an issue with the sample Places Autocomplete . The following search string "*barcelona, la sagrada ...*" returns "*La Sagrada Família, Barcelona, Spain*" The result of the info