[Google Maps API v3] Look if you like

2011-03-02 Thread Niklasro
Dear group, kindly have a look if you like at my effort making a custom map with darker water and yellow borders. All comments and suggestion are natyrally most welcome. Here's the link: http://www.koolbusiness.com Many thanks, NIklas -- You received this message because you are subscribed to th

[Google Maps API v3] Re: Please help !

2011-03-02 Thread NG
thanx... On Mar 3, 11:08 am, "geocode...@gmail.com" wrote: > On Mar 2, 9:39 pm, NG wrote: > > > Hey i want to use google maps in my web app...I want to provide user a > > facility to chose source and destination from two drop down menus(data > > stored in some database preferebly DB2)..and then

[Google Maps API v3] Re: Zoom in/out frequently cause null is null or not an object in IE

2011-03-02 Thread omrs
There is nothing wrong with my HTML code. The problem occures while adding the markers. (And ofcourse it happens only in IE). I just create a new marker item and add it to the map with the setMap function. Is there anything i have to check before adding the markers? On 3 Mart, 02:04, "geocode...@g

[Google Maps API v3] Re: Please help !

2011-03-02 Thread geocode...@gmail.com
On Mar 2, 9:39 pm, NG wrote: > Hey i want to use google maps in my web app...I want to provide user a > facility to chose source and destination from two drop down menus(data > stored in some database preferebly DB2)..and then on submitting, > display a map which shows the available path b/w the t

[Google Maps API v3] Please help !

2011-03-02 Thread NG
Hey i want to use google maps in my web app...I want to provide user a facility to chose source and destination from two drop down menus(data stored in some database preferebly DB2)..and then on submitting, display a map which shows the available path b/w the two !...Please its urgent..if there is

Re: [Google Maps API v3] Re: Function Closures

2011-03-02 Thread Ben Appleton
It sounds like you're proposing to replace event listeners with event delegates. For example, say you have a function called "handleMarkerClick". Event listener: google.maps.event.addListener(marker, 'click', handleMarkerClick); This allocates objects for each marker. Event delegate: mark

Re: [Google Maps API v3] Re: marker.setZIndex seems to no longer work

2011-03-02 Thread Ben Appleton
When 1 marker changes we just repaint the "dirty rectangle" around it, so it's quite fast to pop a marker in or out of a tile. There's a minor issue with leaving the tile alone and rendering another copy of the marker in front: translucent markers would suddenly appear to have higher opacity. On

[Google Maps API v3] Re: V3 Api error: g is null (98 out of range 40)

2011-03-02 Thread Ajith Ekanayake
Hi Larry, We managed to clone a site for you to see the problem: 1) Following site uses : http://maps.google.com/maps/api/js?sensor=true http://www.respiteseeker2.infoxchange.net.au/ You can see the error on this site Please enter a value like *3350* for '*Suburb or Postcode or LGA* ' 2) Follow

[Google Maps API v3] Re: Centering a marker in a dblclick handler doesn't work [V3.4 bug]

2011-03-02 Thread Gary Little
See: http://code.google.com/p/gmaps-api-issues/issues/detail?id=3090&q=apitype%3AJavascript3%20type%3ADefect&sort=-id%20-stars&colspec=ID%20Type%20Status%20Introduced%20Fixed%20Summary%20Internal%20Stars On Mar 2, 6:45 pm, Ben Appleton wrote: > Hi Gary, > > Thanks for the simple example, I see

[Google Maps API v3] Re: can i display the marker from 'style id = ' in xml, alongside the placemark using associated 'styleUrl'? also can i show only particular 'style id' set? projected overlay prob

2011-03-02 Thread geocode...@gmail.com
On Feb 28, 5:32 pm, "geocode...@gmail.com" wrote: > On Feb 28, 4:53 pm, Christopher Watson > wrote: > > > hey larry, thanks so much for your help. i knew i'd probably have > > to copy paste the address details, even if i didnt make this > > interactive 'bottombar?' > > > got your example working

[Google Maps API v3] Re: Function Closures

2011-03-02 Thread bratliff
On Mar 2, 8:53 pm, Ben Appleton wrote: > > The use of "function closures" for event listeners might work for a > > few dozen markers but it does not scale well for many hundred or many > > thousand. Combining event listeners into a common function with > > something unique assigned to a property

[Google Maps API v3] Re: marker.setZIndex seems to no longer work

2011-03-02 Thread bratliff
On Mar 3, 2:07 am, Ben Appleton wrote: > We will soon add a robust way to bring a marker to the front. You could leave the main CANVAS tiles containing many markers alone. You could float a separate CANVAS element containing just one marker over it. It also works for temporary style (color / op

[Google Maps API v3] Re: bug IE 8 maps versao 3

2011-03-02 Thread Mario
For all know, you should use: http://maps.google.com/maps/api/js?v=3.3&sensor=false NOT http://maps.google.com/maps/api/js?sensor=false Its fix the IE bug. On Mar 2, 6:06 pm, Mario wrote: > GUnload removed, but the error continue... Google go go, api version 2 > work better =/ > > On Mar 2, 12:1

Re: [Google Maps API v3] Centering a marker in a dblclick handler doesn't work [V3.4 bug]

2011-03-02 Thread Ben Appleton
Hi Gary, Thanks for the simple example, I see it too. We'll take a look. If you'd like to track our progress, please file an issue in the tracker here: http://code.google.com/p/gmaps-api-issues/issues/entry?template=Maps%20API%20v3%20-%20Bug

Re: [Google Maps API v3] Re: marker.setZIndex seems to no longer work

2011-03-02 Thread Ben Appleton
Draggable markers are not rendered in Canvas. This is only noticeable when there is a mix of non-draggable and draggable markers, in which case the draggable markers pop out in front of the other markers. On Thu, Mar 3, 2011 at 12:30 PM, Esa wrote: > By the way. Draggable marker doesn't behave w

Re: [Google Maps API v3] Re: marker.setZIndex seems to no longer work

2011-03-02 Thread Ben Appleton
Esa Thanks for talking this through. On Thu, Mar 3, 2011 at 12:15 PM, Esa wrote: > Ben > > I am not happy with the answer. We don't know anything about your > zIndex formula. It used to be 'top' but you never documented it and > now you even changed the zIndex scheme. > Sorry, what do you mean

[Google Maps API v3] Re: marker.setZIndex seems to no longer work

2011-03-02 Thread Esa
By the way. Draggable marker doesn't behave well right now concerning z-index. -- 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

[Google Maps API v3] Re: marker.setZIndex seems to no longer work

2011-03-02 Thread Esa
Ben I am not happy with the answer. We don't know anything about your zIndex formula. It used to be 'top' but you never documented it and now you even changed the zIndex scheme. If you you would simply add user zIndex to your internal zIndex, anyone would be happy. We would be happy without knowi

[Google Maps API v3] Re: How to check if a given marker is inside a area

2011-03-02 Thread geocode...@gmail.com
On Mar 2, 5:04 pm, Paulo Fernandes wrote: > I didn't understand Larry Your example does circles only. The link I provided does point in polygon analysis for an arbitrary shaped polygon (in that case the trash pick up regions). Although the example is no where near as simple as yours. -- Larr

Re: [Google Maps API v3] Re: How to check if a given marker is inside a area

2011-03-02 Thread Paulo Fernandes
I didn't understand Larry Paulo Fernandes http://www.google.com/profiles/paulofernandesjr http://twitter.com/paulofernandesj +55 11 9797-5974 On Wed, Mar 2, 2011 at 9:58 PM, geocode...@gmail.com wrote: > How about irregular polygons: > http://www.geocodezip.com/geoxml3_test/v3_collection-map2

Re: [Google Maps API v3] Is it possible to convert a "LatLng obj" to Lat/Lon coordinates?

2011-03-02 Thread WebbWebs
Thank you, Mike. I had tried latlng.lat() and latlng.lng() even before seeing the table of Methods you indicated. I had also tried results[0].geometry.location.lat and results[0].geometry.location.lng without success. I've been working with navigational charts for many years and I'm one a very

[Google Maps API v3] Re: How to check if a given marker is inside a area

2011-03-02 Thread geocode...@gmail.com
On Mar 2, 4:50 pm, Paulo Fernandes wrote: > I think that I solved this issue > > http://www.pjtecnologia.com.br/maps/exemplos/check-lat-lng-is-inside-... > > If you zoom in the border of the circle and click, maybe you get the > "INSIDE" message, I think that is a bug on circle radius size How ab

Re: [Google Maps API v3] Re: marker.setZIndex seems to no longer work

2011-03-02 Thread Ben Appleton
Some sites want to control the z-indices of their markers. If we were to add an API-computed z-index to their z-index, that could change the ordering of their markers. So if a site wants to control the z-indices of their markers, we should do exactly what they say. The issue here is that some site

[Google Maps API v3] Re: V3 Api error: g is null (98 out of range 40)

2011-03-02 Thread geocode...@gmail.com
On Mar 2, 4:12 pm, Ajith Ekanayake wrote: > Hi Larry > Since we have fixed the issue in public sites, I don't > have an url with the issue. I have attached screenshots using > my dev env, see the left & right of the screenshots. I dare you to run a debugger on that picture and tell me what is wro

Re: [Google Maps API v3] Re: How to check if a given marker is inside a area

2011-03-02 Thread Paulo Fernandes
I think that I solved this issue http://www.pjtecnologia.com.br/maps/exemplos/check-lat-lng-is-inside-a-circle.html If you zoom in the border of the circle and click, maybe you get the "INSIDE" message, I think that is a bug on circle radius size Paulo Fernandes http://www.google.com/profiles/

[Google Maps API v3] map click event when clikcing on FusionTablesLayer

2011-03-02 Thread Vish Uma
Hi all, The click events on the map don't get fired when the map has a FusionTablesLayer on it and when the user clicks inside a feature in the FusionTablesLayer. Is this any way around this? I am trying to write some drawing tools and the click events not flowing thru is creating huge issues.

[Google Maps API v3] Re: marker.setZIndex seems to no longer work

2011-03-02 Thread Esa
Why not add user zIndex to your internal zIndex? -- 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-

[Google Maps API v3] Re: Zoom in/out frequently cause null is null or not an object in IE

2011-03-02 Thread geocode...@gmail.com
On Mar 2, 3:47 pm, omrs wrote: > I have the exact same problem. How can i validate my code? HTML Validator: http://validator.w3.org/ -- Larry > > On 2 Mart, 23:34, Esa wrote: > > > > > Any time when IE causes a headache, validate your code first. I did it > > yesterday.- Hide quoted text - >

[Google Maps API v3] Re: Zoom in/out frequently cause null is null or not an object in IE

2011-03-02 Thread omrs
I have the exact same problem. How can i validate my code? On 2 Mart, 23:34, Esa wrote: > Any time when IE causes a headache, validate your code first. I did it > yesterday. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To p

Re: [Google Maps API v3] Is it possible to convert a "LatLng obj" to Lat/Lon coordinates?

2011-03-02 Thread Michael Geary
Generally, every object you work with in the Maps API is an actual JavaScript object, not just a string. Most of these objects have methods you can call to get information out of them. Here's the LatLong doc: http://code.google.com/apis/maps/documentation/javascript/reference.html#LatLng

[Google Maps API v3] Re: Bug adding click events when map div is not visible

2011-03-02 Thread m@uce
Oops. Forgot to mention that this behavior only happens on the Iphone and Android mobile browsers. The same page opened in any other browser, including Safari for the PC would not duplicate the problem. -- You received this message because you are subscribed to the Google Groups "Google Maps J

[Google Maps API v3] Bug adding click events when map div is not visible

2011-03-02 Thread m@uce
I'm using the V3 Maps api within Sencha touch and just noticed a problem. When I add clickable markers to my map while the map is not visible(div is hidden in a tab panel control), the click events to not fire. I worked around the problem by making the markers draggable, which then allowed the

[Google Maps API v3] Is it possible to convert a "LatLng obj" to Lat/Lon coordinates?

2011-03-02 Thread WebbWebs
Although I've been writing code for more years than I care to admit, I am a virtual newbie to Google's Mapping API. I'm currently developing an iPhone/iPad application that uses a Google map to select the location of their birthplace. On initialization, a world map is presented along with a tex

[Google Maps API v3] Re: Interactive Map visitors can add to

2011-03-02 Thread Cassandra
Thank you! The shared spaces is exactly what I was looking for. On Mar 1, 10:08 pm, Chris Broadfoot wrote: > Do you need the API for this? > > Take a look at My Maps:http://maps.google.com/help/maps/mymaps/create.html > > ... and the Shared Spaces > equivalent:http://sharedspaces.googlelabs.com/

[Google Maps API v3] Also nämlich hab ich immer gedacht dass es ein großer Fehler war, deine 500 Dollar zu behalten, und jetzt will ich alles wieder in Ordnung bringen. Verstehe dass du es wahrscheinl

2011-03-02 Thread Zak Patterson
-- Zachary Patterson EJF Real Estate Services, Inc. 2639 Connecticut Avenue, NW #113 Washington, D.C. 20008 202-656-6550 Direct 202-537-1801 Office (x251) zacharykpatter...@gmail.com DC: SP720829 VA: 225196595 PRIVILEGED and CONFIDENTIAL COMMUNICATION The information contained in this e-mail me

Re: [Google Maps API v3] Re: marker.setZIndex seems to no longer work

2011-03-02 Thread Ben Appleton
That would set the z index to 0. We need a way to let you specify z-index of 0 versus letting the API default to z-index by height. We use null/undefined to mean "please default to z-index by height". On Thu, Mar 3, 2011 at 9:00 AM, Esa wrote: > > > > > > > setZIndex(null); > > > > > recovers t

[Google Maps API v3] Re: markers not displayed

2011-03-02 Thread geocode...@gmail.com
On Mar 2, 5:25 am, SSSA wrote: > In my PHP generated website I have a map embedded. With javascript I > initialize the map and put several markers. The coordinates and titles > of the markers are written into a string by PHP which is then included > in the JS. > You can find my code > on:http://w

[Google Maps API v3] Oblique/45 degree/Birdseye images for v3

2011-03-02 Thread Nianwei Liu
Some lucky areas got so called 45 degree images(birds eye, oblique etc). It was available in v2, but not yet available in v3. If you are in one of these areas (e.g San Diego) but can not wait for that feature in v3, I've put together a hack (sort of) here: http://gmaps-utility-gis.googlecode.co

[Google Maps API v3] Re: marker.setZIndex seems to no longer work

2011-03-02 Thread Esa
> > >  setZIndex(null); > > > recovers the original z-index? That is great news. > That is absolutely great, but why not setZindex(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 goog

[Google Maps API v3] Re: KML layer problems

2011-03-02 Thread geocode...@gmail.com
On Mar 2, 8:32 am, mk wrote: > Whats wrong with the following lines of code? Why do I not see > the .kml layer appear? Am I doing this right? > Nope. Failure to read the posting guidelines and provide a link. Failure to read the documentation on KmlLayer:http://code.google.com/ apis/maps/documen

[Google Maps API v3] Re: Problems with CSS and IE

2011-03-02 Thread Esa
Why don't you provide a link. Many of the professionals on this forum have live CSS debuggers available. They might find the trouble immediately if the saw the patient. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To post to

[Google Maps API v3] Re: loading KMZ/KML files with google maps API

2011-03-02 Thread geocode...@gmail.com
On Mar 2, 4:14 am, mk wrote: > Hi, > Is there a tutorial that shows how I can load a KMZ or a KML file with > the javascript google maps API? You mean like the one in the documentation? http://code.google.com/apis/maps/documentation/javascript/overlays.html#KMLLayers or this from the demo galler

[Google Maps API v3] Re: Zoom in/out frequently cause null is null or not an object in IE

2011-03-02 Thread Esa
Any time when IE causes a headache, validate your code first. I did it yesterday. -- 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 t

[Google Maps API v3] Re: bug IE 8 maps versao 3

2011-03-02 Thread Mario
GUnload removed, but the error continue... Google go go, api version 2 work better =/ On Mar 2, 12:11 pm, "geocode...@gmail.com" wrote: > On Mar 2, 6:52 am, Paulo Fernandes wrote: > > > posting the link of Mario's problem > > >http://www.ribeiraotem.com.br/ > > > No firefox aparece tudo corretam

[Google Maps API v3] markers with animated gifs don't work in api v3

2011-03-02 Thread uno
hello, i'm currently switching from api v2 to v3. in v2, i've used animated gifs here & there, but in v3 the animation doesn't work on the normal satellite and road map. (however, they work in street view mode). is this a known issue or did support for animatited gif stop in v3? thanks for tips, un

Re: [Google Maps API v3] Adding a circle with radious x around each point on directions map

2011-03-02 Thread James McGill
Yes, it is possible, but you must first convert your map to Maps API v3. Once you have done that, calling: radius.setMap(map); Will add the circle to your map. As it stands though, this cannot work, as the V3 circle will not work with a V2 map. Regards, James On Thu, Mar 3, 2011 at 7:52 AM, bro

[Google Maps API v3] Center map to different cordinates in a loop

2011-03-02 Thread Ziyan Junaideen
I am very new to JS and am working on a script that shows different locations in a map using markers as mini project at uni. Requirement: center map to each cordinate, one after another What I have: lat and lng values in 2 arrays Problem: Using a for-loop and map.setCenter() funciton. Map displ

[Google Maps API v3] markers not displayed

2011-03-02 Thread SSSA
In my PHP generated website I have a map embedded. With javascript I initialize the map and put several markers. The coordinates and titles of the markers are written into a string by PHP which is then included in the JS. You can find my code on: http://www.skisprungschanzen.com/EN/Ski+Jumps/GER-G

[Google Maps API v3] Center map to different cordinates in a loop

2011-03-02 Thread Ziyan Junaideen
I am very new to JS and am working on a script that shows different locations in a map using markers as mini project at uni. Requirement: center map to each cordinate, one after another What I have: lat and lng values in 2 arrays Problem: Using a for-loop and map.setCenter() funciton. Map displ

[Google Maps API v3] Problems with CSS and IE

2011-03-02 Thread FartMaster
hey all! My webpage works perfectly in Chrome and FireFox but I get an error when I load it in IE... It works fine when I remove the tag but else I get an Invalid argument error ... here is the code for my div tag div#pageAlign { text-align:center; vertical-align:top; margin:a

[Google Maps API v3] loading KMZ/KML files with google maps API

2011-03-02 Thread mk
Hi, Is there a tutorial that shows how I can load a KMZ or a KML file with the javascript google maps API? I also then want to be able to highlight some of the roads that are on this map to display the path to take..what do I look at? I been looking for sample code or tutorials on how KML files are

[Google Maps API v3] Map without ROADMAP: the map type control does not give any access to TERRAIN

2011-03-02 Thread glathoud
Hello, I might have missed something, but it seems that the map type control only gives access to TERRAIN when the map has ROADMAP as well. So on a map without ROADMAP it might be difficult for the user to access TERRAIN. In case of interest I filed a bug: http://code.google.com/p/gmaps-api-issue

Re: [Google Maps API v3] Function Closures

2011-03-02 Thread Ben Appleton
Hey Berry On Mar 3, 2011 6:47 AM, "bratliff" wrote: > > Berry, > > Your comment seems to be unrelated to the post. Please start a new > thread. > > Thanks > Ben > > Sorry > > The use of "function closures" for event listeners might work for a > few dozen markers but it does not scale well for man

Re: [Google Maps API v3] Adding a circle with radious x around each point on directions map

2011-03-02 Thread brothaofdes
Good to know, thank you for the information, but that still does not help me. Is it possible to do what I am looking for? If so, how? -- 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-m

Re: [Google Maps API v3] Adding a circle with radious x around each point on directions map

2011-03-02 Thread James McGill
You seem to be mixing V2 and V3 of the Maps API. These are two different versions of the API which cannot be used on the same map. Regards, James On Thu, Mar 3, 2011 at 7:13 AM, brothaofdes wrote: > I am using the following to create a map: > function initialize() { >   if (GBrowserIsCompati

Re: [Google Maps API v3] bug IE 8 maps versao 3

2011-03-02 Thread Mario Pacio
I tried the code that indicated paulo but did not have success, same error ... :( 2011/3/2 Paulo Fernandes > in this function, you are passing location as a parameter ans you are > using cidade, but this is not a problem, only for you do a better code > > function Marcador(map, location) { > >

[Google Maps API v3] Adding a circle with radious x around each point on directions map

2011-03-02 Thread brothaofdes
I am using the following to create a map: function initialize() { if (GBrowserIsCompatible()) { // Default the map view to the continental U.S. map = new GMap2(document.getElementById("map_canvas")); map.setCenter(new GLatLng(39.9375911, -77.6611022), 10); dire

[Google Maps API v3] Function Closures

2011-03-02 Thread bratliff
Berry, Your comment seems to be unrelated to the post. Please start a new thread. Thanks Ben Sorry The use of "function closures" for event listeners might work for a few dozen markers but it does not scale well for many hundred or many thousand. Combining event listeners into a common functio

[Google Maps API v3] Re: 2011/3/2 - New Release

2011-03-02 Thread Chad Killingsworth
Custom icons - using canvas (in supporting browsers): http://code.google.com/apis/maps/documentation/javascript/examples/icon-complex.html Chad Killingsworth On Wednesday, March 2, 2011 11:59:45 AM UTC-6, pkh

[Google Maps API v3] Re: Using GClientGeocoder and GetLocations

2011-03-02 Thread brothaofdes
Found the issue, simple syntax problem. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To post to this group, send email to google-maps-js-api-v3@googlegroups.com. To unsubscribe from this group, send email to google-maps-js-

[Google Maps API v3] Re: Newbie Q: using overlay with mysql database markers

2011-03-02 Thread JKurtock
Your javascript variable "map" is local to both "initialize" and "load." So the second-running function replaces and redraws the map. Make map a global variable (don't forget to take out "var" inside the functions.) You're also missing the tag. You're getting closer ... - Jeff On Mar 1, 8:34

[Google Maps API v3] Re: 2011/3/2 - New Release

2011-03-02 Thread pkh80
Cool! Are the Canvas rendered markers only available if using non-custom markers? Anywhere we can see a reference implementation of this feature? Thanks! On Mar 1, 9:08 pm, "Chris Broadfoot (Google Employee)" wrote: > Hi all, > > Recently a new version of the Maps API went live. We have made im

[Google Maps API v3] Using GClientGeocoder and GetLocations

2011-03-02 Thread brothaofdes
I got most of this from Mikes tutorial but cannot seem to get it working correctly. I am passing a zip code to the GClientGeocoder.GetLocations API as follows: // the document element will pass the zip code ID to the script // depending on the ID, the getElementID(val) will be created function

[Google Maps API v3] Re: Problem accessing JSON output from Directions Web Services API

2011-03-02 Thread bratliff
It may not be legal: http://www.polylib.us/backdoor Check with Google. I asked for an opinion several months ago. I never received it. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To post to this group, send email to

[Google Maps API v3] Re: Multi-point Directions

2011-03-02 Thread Rossko
> I have a set of several thousand lat/long points that I need to calculate > the road distance between each set of points. Is this possible? You have both technical and legal difficulties. See http://groups.google.com/group/google-maps-js-api-v3/browse_thread/thread/5dd03e5e219fbce/ade572d8b883af

[Google Maps API v3] Re: Problem accessing JSON output from Directions Web Services API

2011-03-02 Thread sandy037
Thanks for all the updates. I will go with V3 API for my application. -- 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, s

[Google Maps API v3] Multi-point Directions

2011-03-02 Thread Kat
I have a set of several thousand lat/long points that I need to calculate the road distance between each set of points. Is this possible? How can it be done? -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To post to this grou

Re: [Google Maps API v3] Re: Problem accessing JSON output from Directions Web Services API

2011-03-02 Thread Andrew Leach
On 2 March 2011 17:06, sandy037 wrote: > > I want to make a mobile application with maps. Since V3 may take more > time to load, I am just wondering if we can use the web services. May take more time to load than what? Basically, you have two choices: either use the client tools, or implement a

Re: [Google Maps API v3] Re: Problem accessing JSON output from Directions Web Services API

2011-03-02 Thread Andrew Leach
On 2 March 2011 16:46, sandy037 wrote: > Or can use a dynamic script tag and write a callback function to get > the results in JSON format?? Does google directions web services > allows us to specify a callback function? Doesn't look like it. Even if it works, it couldn't be relied upon because i

[Google Maps API v3] Re: Problem accessing JSON output from Directions Web Services API

2011-03-02 Thread sandy037
I want to make a mobile application with maps. Since V3 may take more time to load, I am just wondering if we can use the web services. On Mar 2, 10:12 am, "geocode...@gmail.com" wrote: > On Mar 2, 7:05 am, sandy037 wrote: > > > I know that DirectionsService() is there, but I want to know if th

[Google Maps API v3] Re: Centering a marker in a dblclick handler doesn't work [V3.4 bug]

2011-03-02 Thread Gary Little
Yes, I can certainly specify that I want to use V3.3 and everything will work as expected. I just want it to work with V3.4 as well! Gary On Mar 2, 4:03 am, "Samuel H." wrote: > Hello, > > Have you checked my last > post:http://groups.google.com/group/google-maps-js-api-v3/browse_thread/th... >

[Google Maps API v3] restrict access to kml to google maps only

2011-03-02 Thread Rod
I have a large amount of data (thousands of polygons) that I want to share freely with people through my site. I want them to be able to view the polygons, and due to the large amount of data, I am not worried about them stealing this data through the displayed google map. However, since the kml

[Google Maps API v3] Re: Problem accessing JSON output from Directions Web Services API

2011-03-02 Thread sandy037
Or can use a dynamic script tag and write a callback function to get the results in JSON format?? Does google directions web services allows us to specify a callback function? -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To p

Re: [Google Maps API v3] Problema o error con google maps a partir del 01/03/11

2011-03-02 Thread Paulo Fernandes
change the version of the javascript see the changelog http://code.google.com/p/gmaps-api-issues/wiki/JavascriptMapsAPIv3Changelog Maybe this is a bug or something was improved Paulo Fernandes http://www.google.com/prof

[Google Maps API v3] Re: Map does not display in IE7

2011-03-02 Thread Nick
Thank you, you are a legend. It's always the littlest thing... On Mar 2, 4:03 pm, Andrew Leach wrote: > On 2 March 2011 15:53, Nick wrote: > > > > > Can anyone tip me off as to what I've done wrong? > > Here: > >   mapTypeControlOptions: { >                 mapTypeIds: types, >         style: g

Re: [Google Maps API v3] How to get signature in google places api

2011-03-02 Thread Paulo Fernandes
Hi I believe that http://www.google.com/support/forum/p/Places?hl=en forum is better the this one Paulo Fernandes http://www.google.com/profiles/paulofernandesjr http://twitter.com/paulofernandesj +55 11 9797-5974 On Tue, Mar 1, 2011 at 1:43 PM, Pawe wrote: > i have adsense id. > and i have

Re: [Google Maps API v3] Map does not display in IE7

2011-03-02 Thread Andrew Leach
On 2 March 2011 15:53, Nick wrote: > > Can anyone tip me off as to what I've done wrong? > Here: mapTypeControlOptions: { mapTypeIds: types, style: google.maps.MapTypeControlStyle.HORIZONTAL_BAR, position: google.maps.ControlPosition.RIGHT_TOP, }, you have

[Google Maps API v3] Re: Having troubles with path

2011-03-02 Thread Rossko
I've tried to look at www.my-walk.com/index.php yesterday and today, it seems to go into an endless loop on my browsers. > Ive put an alert inside the for loop in the code above, and it is not > showing. The path error must be because the path only contaisn one > latlng value. Last that I could l

[Google Maps API v3] Map does not display in IE7

2011-03-02 Thread Nick
Map doesn't load in IE7 — just a grey box where the map should be. Or so I'm told — I'm an amateur, and on a mac, so I don't have the equipment to check it out. Can anyone tip me off as to what I've done wrong? http://mercator.webs.com/index%20v7.html -- You received this message because you ar

Re: [Google Maps API v3] Re: Problem accessing JSON output from Directions Web Services API

2011-03-02 Thread Andrew Leach
On 2 March 2011 15:05, sandy037 wrote: > I know that DirectionsService() is there, but I want to know if there > is some way to access the Web Services API and get the result. Not from the client, because the browser stops it happening. The Javascript specification prevents cross-domain access wi

Re: [Google Maps API v3] bug IE 8 maps versao 3

2011-03-02 Thread Paulo Fernandes
in this function, you are passing location as a parameter ans you are using cidade, but this is not a problem, only for you do a better code function Marcador(map, location) { image = new google.maps.MarkerImage('/__img/marcador.png', new google.maps.Size(26, 31), new google.maps.Po

[Google Maps API v3] Re: Problem accessing JSON output from Directions Web Services API

2011-03-02 Thread geocode...@gmail.com
On Mar 2, 7:05 am, sandy037 wrote: > I know that DirectionsService() is there, but I want to know if there > is some way to access the Web Services API and get the result. >From your server there is. Why do you need to access it from the client? -- Larry -- You received this message because

[Google Maps API v3] Re: bug IE 8 maps versao 3

2011-03-02 Thread geocode...@gmail.com
On Mar 2, 6:52 am, Paulo Fernandes wrote: > posting the link of Mario's problem > > http://www.ribeiraotem.com.br/ > > No firefox aparece tudo corretamente. mas no IE pra variar, sempre > a pedra > no sapato. > > To English: on Firefox everything is correct, but on IE, there is > an error. Ah, y

[Google Maps API v3] Re: Problem accessing JSON output from Directions Web Services API

2011-03-02 Thread sandy037
I know that DirectionsService() is there, but I want to know if there is some way to access the Web Services API and get the result. -- 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-map

Re: [Google Maps API v3] bug IE 8 maps versao 3

2011-03-02 Thread Paulo Fernandes
posting the link of Mario's problem http://www.ribeiraotem.com.br/ No firefox aparece tudo corretamente. mas no IE pra variar, sempre a pedra no sapato. To English: on Firefox everything is correct, but on IE, there is an error. @Mario, post in English, everytime Paulo Fernandes http://www.goo

Re: [Google Maps API v3] Re: marker.setZIndex seems to no longer work

2011-03-02 Thread Berry Ratliff
Ben Appleton wrote: No, marker zIndex is supported. When rendering markers in canvas we first sort by zIndex. Sorry - my mistake. Unlike SVG & VML, style.zIndex applies to the whole CANVAS tile. Sorting does change the rendering order. The event listeners must resolve ambiguity. -- You

[Google Maps API v3] Re: Scale dependant points from fusion tables

2011-03-02 Thread mgiles
I need the markers to be buffered in size, where the buffer grows when the map is zoomed in. As it is now, the heatmap only works while zoomed out around chicago. When the map is zoomed in the points no longer overlap and they appear as green markers - not much of a heatmap! Is this achievable usin

Re: [Google Maps API v3] bug IE 8 maps versao 3

2011-03-02 Thread Paulo Fernandes
Please post a link for your site READ THE POSTING GUIDELINES Paulo Fernandes http://www.google.com/profiles/paulofernandesjr http://twitter.com/paulofernandesj +55 11 9797-5974 On Wed, Mar 2, 2011 at 1:41 AM, Mario wrote: > O google maps nao funciona perfeitamente no IE. > > Detalhes dos er

[Google Maps API v3] Re: Iphone 4 weird behaviour

2011-03-02 Thread Chad Killingsworth
I don't have an iPhone 4 so I'm relegated to educated guesses. The links you have use frames and they may be playing into this as well. The viewport meta tag should go on the frames page by the way if that's what's being loaded into your phone. Chad Killingsworth -- You received this message

[Google Maps API v3] Re: Centering a marker in a dblclick handler doesn't work [V3.4 bug]

2011-03-02 Thread Samuel H.
Hello, Have you checked my last post: http://groups.google.com/group/google-maps-js-api-v3/browse_thread/thread/8b6c7377b736159e It seems the double click event has been changed at some place. Do you know if there exist a mean to use only version 3.3 in one code app? On Mar 2, 1:14 am, Gary Littl

[Google Maps API v3] Re: about "getArea()"

2011-03-02 Thread Rossko
>       i want to know that how to use getArea() in V3. i find it in v2,but > don't find it in v3.how to measurement area in v3? thanks a lot. Have you seen the geometry library? http://code.google.com/apis/maps/documentation/javascript/geometry.html#Distance -- You received this message because

[Google Maps API v3] Re: Markers changed to render via canvas?

2011-03-02 Thread pi5701
someone already filed bugreport http://code.google.com/p/gmaps-api-issues/issues/detail?id=3080 -- 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 unsu

[Google Maps API v3] Re: As of the new update, marker is displaying 2 shadows, the second is along the x-axis just to the right

2011-03-02 Thread qbit
It's timing out here too... Must be that crappy free american hosting I'm using grrr (gotta change that..) Thanks for the heads up on that thread. I'd say your right and that's the issue. So I guess I have 2 options: 1 - Keep my version at 3.3 maintaining functionality (the web site serves my andr

[Google Maps API v3] Tileset as an overlay

2011-03-02 Thread Odoakr
Hi! I have a tileset made from topographical maps. I can add this to the map as an base map (via google.maps.ImageMapType). How can I dispaly it on top of google satellite map as an overlay? I would like to create simple layer swither with opacity control as well. Have you seen any example? Thank

Re: [Google Maps API v3] As of the new update, marker is displaying 2 shadows, the second is along the x-axis just to the right

2011-03-02 Thread Chris Broadfoot
Your site times out for me. It could be related to this: http://code.google.com/p/gmaps-api-issues/issues/detail?id=3080 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-

[Google Maps API v3] Re: Getting draggable route data out of Google Maps for caching

2011-03-02 Thread Rossko
> We can get the route data out as a JSON file, stringify it, and send > it via AJAX to a PHP file where we intend to process it and store it > in MySQL.  However, the JSON being returned from Google Maps appears > to be malformed; This post looks relevant http://groups.google.com/group/google-map

[Google Maps API v3] about "getArea()"

2011-03-02 Thread YeeFung Man
hi,everybody! i want to know that how to use getArea() in V3. i find it in v2,but don't find it in v3.how to measurement area in v3? thanks a lot. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To post to this group