[Google Maps API v3] Re: Change map type depending on zoom level...

2010-09-07 Thread duncanm
Thanks Larry, not sure if this is the best way to go about it -- but this is what I've got and it seems to do the job! google.maps.event.addListener(map, 'zoom_changed', function() { zoom = map.getZoom(); if(zoom>9) { map.setMapTypeId(google.maps.MapTypeId.ROADMAP); } else { map.setMapTypeId(go

[Google Maps API v3] Re: using gdownloadurl/xml to c reate markers...want to open other infowindows from link ins ide infowindow‏

2010-09-07 Thread shadrack
Thanks...I will give that a try tonight or tomorrow. It looks reasonable. I guess the important part to index the markers is the "gmarkers.push(marker); " part of the code and then the "function myclick(index) { google.maps.event.trigger(gmarkers[index],"click"); }" ? I'll try it out and let

[Google Maps API v3] Re: Map Tile Server

2010-09-07 Thread Robert
Check out http://www.geowake.com. We have an API that makes it easy to add the NOAA charts to your website. On Sep 2, 7:23 pm, Sanuk wrote: > Hey folks, > > Looking for someone who can build a Noaa chart server that will work > with v3. Similar to EarthNC and GeoGarage's work. Any ideas on whe

[Google Maps API v3] Re: Blurring starting point of google map

2010-09-07 Thread Rossko
> I would like to create and app that uses google maps and blurs the > starting pin out and trip path for a .25 mile radius.  So I do not > show a home location? It's pretty easy to work out the centre of a radius to find the supposedly hidden centre... -- You received this message because you a

Re: [Google Maps API v3] Re: Error in pt_pt main.js

2010-09-07 Thread Ben Appleton
Try replicating the issue in a HTML page (not a plugin). If you can't replicate the issue there's not much we can do. Thanks Ben On Wed, Sep 8, 2010 at 7:03 AM, Jon wrote: > We use this in a Firefox extension called Forecastfox, so you'll need > to have that installed. The error is appearing wh

[Google Maps API v3] Re: Blurring starting point of google map

2010-09-07 Thread Grok Lobster
Where's your link to what you've tried so far? On Sep 7, 11:56 am, Nick Baker wrote: > I would like to create and app that uses google maps and blurs the > starting pin out and trip path for a .25 mile radius.  So I do not > show a home location? -- You received this message because you are sub

[Google Maps API v3] Re: G_SKY_VISIBLE_MAP in v3

2010-09-07 Thread Grok Lobster
http://gmaps-samples-v3.googlecode.com/svn/trunk/planetary-maptypes/planetary-maptypes.html On Sep 7, 7:28 am, wjvriend wrote: > Is there any news on when the G_SKY_*, G_MARS_* and G_MOON_* maps will > be enabled in the v3 Maps ? Or put it differently, is there a date > when v2 maps will stop wor

[Google Maps API v3] Re: G_SKY_VISIBLE_MAP in v3

2010-09-07 Thread Grok Lobster
This link used to be an example of that but somebody broke it. Perhaps you can get the necessary info from the source code. http://gmaps-samples-v3.googlecode.com/svn/trunk/planetary-maptypes/planetary-maptypes.html On Sep 7, 7:28 am, wjvriend wrote: > Is there any news on when the G_SKY_*, G_MA

[Google Maps API v3] Re: using gdownloadurl/xml to c reate markers...want to open other infowindows from link ins ide infowindow‏

2010-09-07 Thread geocode...@gmail.com
On Sep 7, 7:33 am, shadrack wrote: > I've recently finished converting a map to work in v3.  Its > here:http://julieshad.com/ag/map_v3.html.  And the xml is > here:http://julieshad.com/ag/markers.xml. > I now have another hurdle to cross involving connecting/displaying a > relationship between s

[Google Maps API v3] Blurring starting point of google map

2010-09-07 Thread Nick Baker
I would like to create and app that uses google maps and blurs the starting pin out and trip path for a .25 mile radius. So I do not show a home location? -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To post to this group, s

[Google Maps API v3] G_SKY_VISIBLE_MAP in v3

2010-09-07 Thread wjvriend
Is there any news on when the G_SKY_*, G_MARS_* and G_MOON_* maps will be enabled in the v3 Maps ? Or put it differently, is there a date when v2 maps will stop working ?? I'm especcially interested in porting our G_SKY_VISIBLE_MAP v2 application to v3. -- You received this message because you a

[Google Maps API v3] using gdownloadurl/xml to creat e markers...want to open other infowindows from link inside infowindow‏

2010-09-07 Thread shadrack
I've recently finished converting a map to work in v3. Its here: http://julieshad.com/ag/map_v3.html. And the xml is here: http://julieshad.com/ag/markers.xml. I now have another hurdle to cross involving connecting/displaying a relationship between some of the markers via data that is in the xml

[Google Maps API v3] Google Maps Api Versus maps.google.com on IPad

2010-09-07 Thread chuby.qc
I have a very simple page; basically, I load the maps api in a div which is full page. Everything works fine except for the zoom. First, the animation if far from being as smooth as it is on maps.google.com. Second, it may be the same problem actually, when the animation is near finished, the zoo

[Google Maps API v3] google maps edit

2010-09-07 Thread arun
Hi, I want to do below things with google map One page First, create a google map (polyline) and submit the page and allow the user to view the map. One view page, allow the user to open the same page in edit more and allow to (edit,clear) the google map (polylines), which was drawn in the first

[Google Maps API v3] Re: Change ImageMapType options dynamically

2010-09-07 Thread Pablo Gallardo
I guess that my problem has been answered in the following topic. ImageMapType is designed for static images, so I should use a Custom Map Type in order to achieve the functionaly I was looking for. http://groups.google.com/group/google-maps-js-api-v3/browse_thread/thread/f333ea8b2cbf53c9/56049b3e

[Google Maps API v3] Re: Error in pt_pt main.js

2010-09-07 Thread Jon
We use this in a Firefox extension called Forecastfox, so you'll need to have that installed. The error is appearing when we first load the map, before searching for anything. Here is the code we're using: function load_google_maps() { var script = document.createElement("script");

Re: [Google Maps API v3] Re: How to create a text window?

2010-09-07 Thread Nathan Raley
But let me add, from first glance its like you are adding the marker but not doing anything with your DOM object, your css table. You are adding the marker on the click event but you aren't doing anything with the actual table. On Tue, Sep 7, 2010 at 3:45 PM, Nathan Raley wrote: > Well, your qu

Re: [Google Maps API v3] Re: How to create a text window?

2010-09-07 Thread Nathan Raley
Well, your question is more geared towards using javascript, css, and DOM to coincide and interact with each other as opposed to actually doing much with the map data. How much do you know about the css and DOM? The code to do this should be very similar to the v2 stuff. You have a link to your

[Google Maps API v3] Re: Controlling zoom in KmlLayer

2010-09-07 Thread Patrick Cain
Thanks! On Sep 7, 4:24 pm, "geocode...@gmail.com" wrote: > On Sep 7, 1:15 pm, Patrick Cain wrote: > > > Hello, all - > > > I'm having trouble controlling the zoom in this > > map:http://www.patrickcain.ca/maps/100902_torontowards.html > > > It seems to load the map, then reload it to show the K

[Google Maps API v3] Re: Change map type depending on zoom level...

2010-09-07 Thread geocode...@gmail.com
On Sep 7, 1:23 pm, duncanm wrote: > How can I change the map type depending on the zoom level? > > ie: below level 9 TERRAIN & above level 9 - ROADMAP 1. listen to the zoom_changed event. 2. get the zoom 3. set the maptypeid based on the zoom level -- Larry -- You received this message becau

[Google Maps API v3] Re: Controlling zoom in KmlLayer

2010-09-07 Thread geocode...@gmail.com
On Sep 7, 1:15 pm, Patrick Cain wrote: > Hello, all - > > I'm having trouble controlling the zoom in this > map:http://www.patrickcain.ca/maps/100902_torontowards.html > > It seems to load the map, then reload it to show the KML file at the > centre of the map. I would like to set the zoom, accep

[Google Maps API v3] Change map type depending on zoom level...

2010-09-07 Thread duncanm
How can I change the map type depending on the zoom level? ie: below level 9 TERRAIN & above level 9 - ROADMAP -- 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...@googlegro

[Google Maps API v3] Re: How to create a text window?

2010-09-07 Thread geocode...@gmail.com
On Sep 7, 1:06 pm, gdhuynh wrote: > OK, for example with this code in v3. How do you create > a window to the right of the map displaying a list of lat/lon pairs > after each click and not just one on top the previous pair like > the one on this code? I am not going to try running code posted in

[Google Maps API v3] Controlling zoom in KmlLayer

2010-09-07 Thread Patrick Cain
Hello, all - I'm having trouble controlling the zoom in this map: http://www.patrickcain.ca/maps/100902_torontowards.html It seems to load the map, then reload it to show the KML file at the centre of the map. I would like to set the zoom, accepting that some of the KML may spill off the side of

[Google Maps API v3] Re: How to create a text window?

2010-09-07 Thread gdhuynh
OK, for example with this code in v3. How do you create a window to the right of the map displaying a list of lat/lon pairs after each click and not just one on top the previous pair like the one on this code? Thank you for quick reply, http://maps.google.com/maps/api/js? sensor=false">

Re: [Google Maps API v3] Re: How to create a text window?

2010-09-07 Thread Nathan Raley
I am assuming that your window was created in a div below the map div in the v2 and you posted information inside this div from your map? On Tue, Sep 7, 2010 at 2:33 PM, geocode...@gmail.com wrote: > On Sep 7, 12:09 pm, gdhuynh wrote: > > Well, I created such text window displaying 10 rows next

[Google Maps API v3] Re: How to create a text window?

2010-09-07 Thread geocode...@gmail.com
On Sep 7, 12:09 pm, gdhuynh wrote: > Well, I created such text window displaying 10 rows next to a map > under API v2 > but it won't run under API v3. Here is the code under API v2 for such > window. The below is not "code" it is html (well this.select() is javascript, but...). If you post a lin

[Google Maps API v3] CSS

2010-09-07 Thread hzs
Forgive me if this is in the docs somewhere -- I can't find it. Seems that the Maps api adds some nice styles at the beginning of my head section. I'm hoping to leverage the style sheets from the rest of my site, but they override some of the maps styles and make my directions look lousy. Is the

[Google Maps API v3] Re: How to create a text window?

2010-09-07 Thread gdhuynh
Well, I created such text window displaying 10 rows next to a map under API v2 but it won't run under API v3. Here is the code under API v2 for such window. After each click on map, the window will display a pair of "coords_id" lon/lat: Long and Lat:

[Google Maps API v3] Re: How to create a text window?

2010-09-07 Thread geocode...@gmail.com
On Sep 7, 10:44 am, gdhuynh wrote: > Hi, > >  I would like to create a permament big text window where it will > display the pair lat/lon whenever > I placed a marker on map. I don't want the prompted inforwindow. What does this have to do with the API then? Use normal HTML. -- Larry -- You

[Google Maps API v3] How to create a text window?

2010-09-07 Thread gdhuynh
Hi, I would like to create a permament big text window where it will display the pair lat/lon whenever I placed a marker on map. I don't want the prompted inforwindow. Thanks, -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group.

[Google Maps API v3] GeocoderAddressComponent

2010-09-07 Thread EduRibeiro
street_address Is to get the result of GeocoderAddressComponent the array with the index string and not numeric? Example: result [0]. Address_components ['street_address']; not found width string Does anyone know Portuguese ? -- You received this message because you are subscribed to

[Google Maps API v3] Re: Extract all addresses\ LatLng in the polygon

2010-09-07 Thread Maps.Huge.Info (Google Maps API Guru)
You're pretty much out of (free) luck with what you're trying to do. There is no free API that will return that information. This type of information is extremely valuable and will set you back a fortune if you pursue this with a commercial direct mail provider. The best you could do is get things

[Google Maps API v3] Re: Extract all addresses\ LatLng in the polygon

2010-09-07 Thread Rossko
> my problem is I dont have any data, what I want to try is "pick all > the latlng points with the polygon. I'm still not sure what you are trying to achieve? If you decided not to pick all the lat/long points but perhaps only those at 1 nanometre intervals, it would be possible to write some cod

[Google Maps API v3] Re: Create a Geocode Searchable Map

2010-09-07 Thread Grok Lobster
You've got maps defined as a local variable and it needs to be global. In the initialize function change var map = to just map = and then put var map at the top of the script section after var geocoder. On Sep 7, 2:59 am, manish wrote: > Hi - > > I have a working map with Custom Marker and Posit

[Google Maps API v3] Re: Extract all addresses\ LatLng in the polygon

2010-09-07 Thread Hassan Kool
Please be Kind with me here, I do know the algorithm for searching a point in a polygon. my problem is I dont have any data, what I want to try is "pick all the latlng points with the polygon. yes the points can be infinite and didn't knew API dose not support it. Is there any alternate way picking

[Google Maps API v3] Re: kmz file

2010-09-07 Thread mohammed
ok man , i have edited the visibility to 1 , u can find the file at http://khanduqji.com/doc.kmz but i still have the same problem , can u please help me ? On Sep 7, 2:23 pm, mohammed wrote: > any software can help me with this ? > > On Sep 7, 2:09 pm, Rossko wrote: > > > > and how to set the v

[Google Maps API v3] Re: kmz file

2010-09-07 Thread mohammed
any software can help me with this ? On Sep 7, 2:09 pm, Rossko wrote: > > and how to set the visibility to 1 ? sorry am beginner at this > > Your KMZ is a zip file. > Inside the zip is a file doc.kml > That file contains the line >    0 > You need to edit the original file to be >    1 > and then

[Google Maps API v3] Re: kmz file

2010-09-07 Thread mohammed
any software can help me with this ? On Sep 7, 2:09 pm, Rossko wrote: > > and how to set the visibility to 1 ? sorry am beginner at this > > Your KMZ is a zip file. > Inside the zip is a file doc.kml > That file contains the line >    0 > You need to edit the original file to be >    1 > and then

[Google Maps API v3] Re: kmz file

2010-09-07 Thread mohammed
any software can help me with this ? On Sep 7, 2:09 pm, Rossko wrote: > > and how to set the visibility to 1 ? sorry am beginner at this > > Your KMZ is a zip file. > Inside the zip is a file doc.kml > That file contains the line >    0 > You need to edit the original file to be >    1 > and then

[Google Maps API v3] Re: Rotation about MarkerImage

2010-09-07 Thread Rossko
> i just would like to know if it is possible to indicate a rotation > grade to a Marker Image ? Browsers don't do image rotation, which limits what the maps API can do. Previous discussion of an approach - http://groups.google.com/group/google-maps-js-api-v3/browse_thread/thread/4922290fc003f603/

[Google Maps API v3] Re: kmz file

2010-09-07 Thread Rossko
> and how to set the visibility to 1 ? sorry am beginner at this Your KMZ is a zip file. Inside the zip is a file doc.kml That file contains the line 0 You need to edit the original file to be 1 and then create a new zip file to include your edited doc.kml -- You received this message beca

Re: [Google Maps API v3] Re: Adding an InfoWindow to Directions

2010-09-07 Thread Christian Albrecht
Thanks, with your example I figured out how to do it. It's just a shame that you can't access the polyline directly from the DirectionsRenderer. Regards, Chris On 04.09.2010 02:19, geocode...@gmail.com wrote: On Sep 3, 12:43 pm, Cheesee wrote: Hi, I'm trying to figure out if it's possible t

[Google Maps API v3] Create a Geocode Searchable Map

2010-09-07 Thread manish
Hi - I have a working map with Custom Marker and Positioning abilities. I would like to add a Search Facility to the map through which people can enter the name of the place and then drag the Marker to get exact positions. You can see what I have up to now at: http://www.naulosansar.com/maps/3.ht

[Google Maps API v3] Re: Help on passing extra parameters to Geocoder

2010-09-07 Thread eszpee
Thanks Barry, this helped! PS: Thanks for the other info too, I'm not planning anything against the TOS, it's going to be a one-time conversion tool for addresses to help manual checking. The result will be displayed with a proper Google map. Thanks again. eszpee On Sep 6, 11:19 pm, Barry Hunte

[Google Maps API v3] Re: Duda Eventos

2010-09-07 Thread geocode...@gmail.com
On Sep 7, 2:58 am, jspcat wrote: > Hola, > > Tengo la siguiente duda con la api de google maps: > > Este codigo que lo extraje > dehttp://code.google.com/apis/ajax/playground/#event_arguments > > function initialize() { >       if (GBrowserIsCompatible()) { >         var map = new GMap2(document.

[Google Maps API v3] clicking a marker opens an empty new tab in FireFox

2010-09-07 Thread vdab Oostende
Hi, on my map, clicking a marker makes FF open an empty new tab. This behaviour did not happen before... When you return to the original page (just next to it), it appears that the infowindow opened correctly. This only happens in FireFox, not in Chrome or IE8. check my page: http://www.ict.ten

[Google Maps API v3] Re: kmz file

2010-09-07 Thread mohammed
and how to set the visibility to 1 ? sorry am beginner at this On Sep 7, 6:17 am, Grok Lobster wrote: > You have visibility set to 0 > > On Sep 6, 5:33 pm, mohammed wrote: > > > any help please ? > > > On Sep 7, 2:35 am, mohammed khanduqji wrote: > > > > thanks for ur quick reply ,, i had mista

[Google Maps API v3] Duda Eventos

2010-09-07 Thread jspcat
Hola, Tengo la siguiente duda con la api de google maps: Este codigo que lo extraje de http://code.google.com/apis/ajax/playground/#event_arguments function initialize() { if (GBrowserIsCompatible()) { var map = new GMap2(document.getElementById("map_canvas")); map.setCent