[Google Maps API v3] Re: How to embed google map in SVG document

2011-11-06 Thread Sy
I have an SVG document and what I want to do or find out if its possible is how to get a Google map rendered in an area of the SVG document. I think your examples are examples of maps inside HTML documents. On Nov 6, 3:47 pm, Berry Ratliff wrote: > On Nov 5, 7:10 pm, Sy wrote: > > > Hi, > > >

[Google Maps API v3] Re: problem with getBounds()

2011-11-06 Thread Merav Ben Harush
I read this post, that's the reason i wrote that all the neccessary item are initialized and set ("I initialized the map, the map.getCenter() and map.getZoom() "). I don't have a way to post a link, because it's in an internal system. everything else, works just fine. only when it comes to getB

[Google Maps API v3] Re: How to I make a marker that moves?

2011-11-06 Thread geocode...@gmail.com
On Nov 6, 9:30 pm, Paul Bono wrote: > I am trying to track a car that outputs GPS coordinates to me.  I have no > issue grabbing the coordinates but I do have trouble getting the marker to > move from its initial state.  I've looked online and could only find > examples for marker movement in the

[Google Maps API v3] How to I make a marker that moves?

2011-11-06 Thread Paul Bono
I am trying to track a car that outputs GPS coordinates to me. I have no issue grabbing the coordinates but I do have trouble getting the marker to move from its initial state. I've looked online and could only find examples for marker movement in the v2 JavaScript API. I however would like

[Google Maps API v3] Re: Google Maps v3. Infowindow with button

2011-11-06 Thread RoyHB
Have a look at adding an onclick event to the button... i.e. wrote: > I have prepared this example where you can find a "button" in the > infowindow:http://www.sipa.es/prueba_fer/index_prueba.html > > How can I associate an action to that button? For example, changing > the zoom, open a new windo

[Google Maps API v3] Re: Overlay Click Event not Firing on IOS Device

2011-11-06 Thread Chris C
That was a good idea but it did not resolve the problem. Any other thoughts? On Nov 4, 6:09 pm, "Enoch Lau (Google Employee)" wrote: > You've put the div into the overlayImage pane. Try putting it into the > overlayMouseTarget pane instead. > > Enoch -- You received this message because you ar

[Google Maps API v3] Overlaying mass data points as a png

2011-11-06 Thread PStust
I have a huge amount of GPS data (100k+ lat lng points for each user) that I want to display over a google map. I have made a php script that will reduce that data to a png image and apply it to my google map perfectly (I can automatically generate and cache these images). The issue I have is t

[Google Maps API v3] Good practice for pulling filterable locations to a map from a database? (and to be Android compatible)

2011-11-06 Thread justn
I'm working on a project, and just need a bit of guidance. I've read through lots of documentation and watched tons of tutorials but my practical experience with API's is limited, so was just hoping someone could give me some advice and point me in the right direction. I'm going to use the M

Re: [Google Maps API v3] Agony and Confusion over Google Map's Developer API TOS. Please help, desperate :(

2011-11-06 Thread Michael Geary
The fact that you plan to charge for your service in the future is not a problem for now, because at the moment it is open to anyone for free. The TOS is only concerned with what you *actually do* with the API, not what you *may do* in the future. However, your PDF maps are "derivative works" that

[Google Maps API v3] Re: Transaction limits and associated costs

2011-11-06 Thread JD Gauchat
I just sent an email to ask about the premier account and I got a message that is talking about thousands of dollars for just a million access. At the end of the email says: "Please respond to this email if you have any additional questions", and guess what is the email? yes, you got it... It'

[Google Maps API v3] Re: How to embed google map in SVG document

2011-11-06 Thread Berry Ratliff
Without "http://"; the links are not clickable. Sorry http://home.provide.net/~bratliff/cities http://home.provide.net/~bratliff/harbor http://home.provide.net/~bratliff/hawaii -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API

[Google Maps API v3] Re: How to embed google map in SVG document

2011-11-06 Thread Berry Ratliff
On Nov 5, 7:10 pm, Sy wrote: > Hi, > > Thanks for the reply. I want to include a Google Map in an SVG > document. I believe the SVG document containing the static map must be displayed in a browser. A static map can be redecorated with CANVAS in a browser. home.provide.net/~bratliff/cities

[Google Maps API v3] Re: Modify Map (add data) after initialization

2011-11-06 Thread Kasper
And I've got the last part fixed aswell now. Because I was loading the javascript after the page loaded, somehow some variables didn't want to stay global. So I declared them on the part of the page that was loaded, and it all works fine now. I'm glad this is finally fixed :) -- You received

[Google Maps API v3] Re: Struggling to set up sharing Infowindow link with a unique url inside its own infowindow?

2011-11-06 Thread Rossko
> http://creativemaps.vism.ag/1c.htm > > still no success. it might be general javascripting but i cant work out > what its missing or why its not swapping the spaces for hyphens. I think that must be because you're not grasping the flow of the script. You have a tilesloaded listener that when tri

[Google Maps API v3] Re: Modify Map (add data) after initialization

2011-11-06 Thread Kasper
After a lot of messing around I got it working by making the position variable a global variable AND by redefining it within the travel function... However, now I'm running into a problem with the marker that is being added: it somehow loses its definition after its placed... So it has to be pl

[Google Maps API v3] Re: Find LatLng for many address database entrys?

2011-11-06 Thread Rossko
> I have a database with many addresses and I want to find the location > to store it in the database. I like to display them in a map later. See http://code.google.com/apis/maps/articles/geocodestrat.html and http://code.google.com/apis/maps/articles/phpsqlgeocode.html and http://code.google.com/

[Google Maps API v3] Re: Agony and Confusion over Google Map's Developer API TOS. Please help, desperate :(

2011-11-06 Thread Joseph Elfelt
Have you seen this FAQ? http://code.google.com/apis/maps/faq.html Within that FAQ there is this item: "Can I use the Google Maps API on a commercial website? As long as your site is generally accessible to consumers without charge, you may use the Google Maps API. For example, if your websit

[Google Maps API v3] Find LatLng for many address database entrys?

2011-11-06 Thread OscarWilde
Hi all, I have a database with many addresses and I want to find the location to store it in the database. I like to display them in a map later. I don't know if the JS API is the correct tool to do this but what can I use to do that? Thanks for your help! Frank -- You received this message be

[Google Maps API v3] Re: Modify Map (add data) after initialization

2011-11-06 Thread Kasper
For some reason the position variable still returns undefined I've checked all the expressions that should be defining the position variable, and those are all ok... weeeird :S -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group

[Google Maps API v3] Re: Struggling to set up sharing Infowindow link with a unique url inside its own infowindow?

2011-11-06 Thread Rossko
> i have tried to adapt it into my page, but its not putting - (hyphen) into > the space. not sure what i'm doing wrong, > http://creativemaps.vism.ag/1c.htm You've added your code so that it will process any parameters passed in via the URL. You haven't added any code that will do anything to you

[Google Maps API v3] Re: Route planning with multiple addresses

2011-11-06 Thread Rossko
> I was wondering if it was possible for the google maps api to plot a route > using multiple locations. You could try the documentation http://code.google.com/apis/maps/documentation/javascript/services.html#Waypoints -- You received this message because you are subscribed to the Google Groups

[Google Maps API v3] Re: problem with getBounds()

2011-11-06 Thread Rossko
> what do i need to do in order that the function will work correctly? For general advice, you could search this group for similar threads, like this one http://groups.google.com/group/google-maps-js-api-v3/browse_thread/thread/563ed63c2bd60749/ee6d047bc060c46c For specific advice, you'd have to

[Google Maps API v3] problem with getBounds()

2011-11-06 Thread Merav Ben Harush
Hello, I initialized the map, the map.getCenter() and map.getZoom() are set. meaninng all the items that needs to be set in order that the function getBounds will return the map bounds, are set and returning the correct response (not null or undefined). but for some reason the function getBouds(

[Google Maps API v3] Route planning with multiple addresses

2011-11-06 Thread Lyn Williams
I was wondering if it was possible for the google maps api to plot a route using multiple locations. Using locations provided by a restful method, XML or Json is it possible to provide directions for the journey together with a plotted map. Any suggestions would be highly appreciated. Thanks,