Re: google maps with matrix - pixel grid

2010-04-25 Thread x
thanks for your answer. ok, so your saying that even if the server process such matrix sends it to the client for paint it would be too much? also, if doing so on the server side, how? image overlay youve wrote... but how can i run on each pixel for a specific rectangle ne , sw coords? thanks O

RE: Multiple Layer

2010-04-25 Thread Ralph Ames
Have you seen Mikes' tutorial http://econym.org.uk/gmap/ Ralph - www.easypagez.com/maps/map_index.html -- You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to this group, send email to google-maps-...@googlegroups.com. To unsubscribe f

Multiple Layer

2010-04-25 Thread ss
Dear All, I would like to know is it possible to have muliple layers in google map for different marker to be drawn on different layers accordingly? The problem now I I just can do is addOverLay.Thank you. -- You received this message because you are subscribed to the Google Groups "

Re: My shapefile KMZ will not clamp to ground

2010-04-25 Thread Barry Hunter
I wonder if you have misunderstood clampToGround ? altitudeMode controls the how the altitude of the geometry in interpreted - and so how its displayed in a 3D viewer (such as Google Earth). It has absolutely no meaning in Google Maps - which is 2D anyway. You seem to be talking about the rende

Re: My shapefile KMZ will not clamp to ground

2010-04-25 Thread Rossko
> I save the KMZ shapefile as clamped to ground, but once displayed > through the google map API, that line of code is gone and my Shapefile > KMZ is overlayed over my data points from the other layers that should > be above.  What am I doing wrong? is not supported in GGeoXml, see http://code.go

My shapefile KMZ will not clamp to ground

2010-04-25 Thread Dionna Mustybrook
I save the KMZ shapefile as clamped to ground, but once displayed through the google map API, that line of code is gone and my Shapefile KMZ is overlayed over my data points from the other layers that should be above. What am I doing wrong? Here's the URL: http://test.recovery.ca.gov/html/funding

Abuse of API service

2010-04-25 Thread Pablo_Sky
Checking tracking service, i found this url http://seguimientoglobal.com.ar/, they are using google map for this service, they not respect Terms of Service, because they shell this service and not have a API Premier Service, only have a standar API for regular users. They are using this ip for the

Re: Google Map Search.

2010-04-25 Thread Rossko
> I want to use google map api for searching near by parking location > and restaurants. You can't, the maps API does maps. It does offer the Googlebar to integrate Local Search, but you don't want that. > So can somebody guide me? I have seen many examples for that but in > all example there i

Re: android

2010-04-25 Thread Rossko
> Is there any available navigation for tractor trailers i.e. height and > weight restriction on google navigation for android phones.If not is > there any plans for future development. Not so far as I know. Have a look at some of these http://groups.google.com/group/google-maps-api/search?group=g

full line coordinates with snap to street

2010-04-25 Thread buttman
I am creating a widget that allows a user to enter a route with a google maps applet, and then upload that route to the server, where it will be saved in a database. I want the data entered by the user to be snapped to the roads, like this: http://econym.org.uk/gmap/snap.htm But I want to be abl

Re: 'Get Directions on your own map' Problems

2010-04-25 Thread Andrew Leach
On Apr 25, 5:52 pm, "J.S" wrote: > > Is there anything else you can see that could be the problem? Firebug is useful. :Look on the Net tab and find the call to nav: that shows you're asking for from: weedon road,northampton to: KFC102 Nene Valley Retail Park, Northampton, NN1 1...@52.230662,-0.90

Google Map Search.

2010-04-25 Thread Dipen Patel
Hi, I want to use google map api for searching near by parking location and restaurants. So can somebody guide me? I have seen many examples for that but in all example there is one search box and using that i am able to search data. But i do not want that button. Also is it possible to get onl

android

2010-04-25 Thread stef
Is there any available navigation for tractor trailers i.e. height and weight restriction on google navigation for android phones.If not is there any plans for future development. -- You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to thi

Re: v2 - defining map bounds exactly

2010-04-25 Thread maps.huge.info [Maps API Guru]
V3 works the same as v2 tiles wise, so integer zoom levels are the standard. The only hope you have of doing anything like you're seeking is to use the static map API and forget about moving the map. I'm not sure what kind of results you'll get though, probably not as good as the standard API and

Re: google maps with matrix - pixel grid

2010-04-25 Thread maps.huge.info [Maps API Guru]
I doubt you're going to get any satisfactory results for pixel painting directly out of the browser. Using SVG or maybe HTML5 methods may get the results you're looking for but you will be limiting your audience to advanced browsers and higher powered computers. Using a server side approach with an

Re: 'Get Directions on your own map' Problems

2010-04-25 Thread J.S
Okay I sorted out that the errors and found the typo you were talking about but I still have the "A directions request could not be successfully parsed." error message appear whenever I try to get the directions To or From the locations, I honestly do not know that the problem could be... Is there

Re: G_GEO_TOO_MANY_QUERIES on GAE - reaching limit too fast

2010-04-25 Thread geocode...@gmail.com
On Apr 25, 1:32 am, Nick Renny wrote: > Hi I'm getting the 620 error, but it seems to be happening too fast. I > am running maybe 10 - 15 requests every 45 minutes - this will never > go near the limit so is it because I am calling them too close > together? Probably. There is a rate limit as we

KML markers don't appear in Google Earth plugin

2010-04-25 Thread cyberhobo
Here is a KMZ file loading pretty well via GGeoXml in regular map types: http://visiblepast.net/see/archives/63 If you change the map type to Earth, however, the markers don't appear. Should this work? If so, any hints what to look for to debug? Many thanks, -dylan- -- You received this messa

Re: Complex icon with dinamic text inside?

2010-04-25 Thread ignacio.guarinos
I'm seriously thinking about caming back to V2.x as it is more stable too. What I don't know is how to make something similar to the geo_complete stuff. http://code.google.com/p/geo-autocomplete/ I wonder if there's something similar out there that can autocomplete an address field using Google dat

google maps with matrix - pixel grid

2010-04-25 Thread x
im new to google maps API, tried searching the web for the answer, but nothing. Also did some reading, and nothing. I want to color (an overlay) a region on the map, but i need a way to consider the map as a pixel grid. So that i could run with a nested loop on the map and give each pixel a color (

Re: Complex icon with dinamic text inside?

2010-04-25 Thread Rossko
If you are loading v3, this is going to fail next var map = new google.maps.Map2(document.getElementById("map")); can't mix syntax, as Esa says. Elabel is v2 I reckon, though you could adapt it I'm sure. -- You received this message because you are subscribed to the Google Groups "Google

Re: Pre-defined search term for map?

2010-04-25 Thread Andrew Leach
On Apr 25, 1:08 am, Chris wrote: > I have a page that shows a map of a zip code at zoom level 10. I want > it to show all "pizza" places within that map (similar to "Search > Nearby" function on Google Maps GUI). I want it to create simple > markers for each item returned by this search. > > I wan

G_GEO_TOO_MANY_QUERIES on GAE - reaching limit too fast

2010-04-25 Thread Nick Renny
Hi I'm getting the 620 error, but it seems to be happening too fast. I am running maybe 10 - 15 requests every 45 minutes - this will never go near the limit so is it because I am calling them too close together? -- You received this message because you are subscribed to the Google Groups "Googl

Pre-defined search term for map?

2010-04-25 Thread Chris
I have a page that shows a map of a zip code at zoom level 10. I want it to show all "pizza" places within that map (similar to "Search Nearby" function on Google Maps GUI). I want it to create simple markers for each item returned by this search. I want this search term to be pre-defined, hard-co

Re: Complex icon with dinamic text inside?

2010-04-25 Thread Esa
On Apr 25, 12:50 pm, Ignacio Guarinos wrote: > But I'm loading V3 API!! > I'm getting a little confused right now. > And in the page you pointed me to, I can't find Geocoder, just > GClientGeocoder that should be google.maps.ClientGeocoder. Isn't it? You are not the first one confused. v3 is no

Re: Complex icon with dinamic text inside?

2010-04-25 Thread Ignacio Guarinos
Yes I'm sorry, this what I have in the head of my doc: google.load("maps", "3", {"other_params":"sensor=false"}); google.load("jquery", "1.4.2"); I'm gonna check this link out, thanks again! 2010/4/25 Rossko > > But I'm loading V3 API!! > > Are you ? We can't tell from your snippet.

Re: Complex icon with dinamic text inside?

2010-04-25 Thread Rossko
> But I'm loading V3 API!! Are you ? We can't tell from your snippet. V3 group is here http://groups.google.com/group/google-maps-js-api-v3 -- You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to this group, send email to google-maps-...@

Re: Complex icon with dinamic text inside?

2010-04-25 Thread Ignacio Guarinos
But I'm loading V3 API!! I'm getting a little confused right now. And in the page you pointed me to, I can't find Geocoder, just GClientGeocoder that should be google.maps.ClientGeocoder. Isn't it? 2010/4/25 Rossko > > Now I'm trying to use the geo_autocomplete extension ( > http://code.google.c

Re: Complex icon with dinamic text inside?

2010-04-25 Thread Rossko
> Now I'm trying to use the geo_autocomplete extension > (http://code.google.com/p/geo-autocomplete/) but I allways get the message > "Geocoder is not a constructor" And right it is. Here is the v2 API reference http://code.google.com/apis/maps/documentation/reference.html You've copied an examp

Re: Complex icon with dinamic text inside?

2010-04-25 Thread Ignacio Guarinos
Yes, it is fixed now, it was just something contextual. I would like to post a link to my site, but I'm working in a Intranet, so it is difficult for me. Now I'm trying to use the geo_autocomplete extension ( http://code.google.com/p/geo-autocomplete/) but I allways get the message "Geocoder is not