Wednesday, November 25, 2009

Re: Open infowindow with a onmounseover javascript outside map

Mike's 'categories' example is close to what you want.
http://econym.org.uk/gmap/categories.htm


On Nov 25, 10:44 am, Leif <l...@kuhlins.com> wrote:
> Hello!
> I want to open the infowindow for a link (with onmouseover) outside
> the map window.
> Check outhttp://www.kuhlins.com/nyalv.php(only swedish but you will
> see what I mean)
>
> When a user does a onmouseover on a link to the left, the infowindow
> on each map location shall open.
>
> Can anyone help me?

--

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-api@googlegroups.com.
To unsubscribe from this group, send email to google-maps-api+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-maps-api?hl=en.

Re: Message: 'GGeocodeCache' is undefined

Thanks for pointing that out. I have added the code to this page

http://www.reaganpower.com/c1.aspx but it still doesnt work.

i get the same errors as before.

On Nov 25, 11:45 am, Mike Williams <nos...@econym.demon.co.uk> wrote:
> Wasn't it cpl who wrote:
>
> >This link WORKS:
>
> >http://www.reaganpower.com/loc3.aspx
>
> That page loads the API code with this line:
>
> <script
> src="http://maps.google.com/maps?file=api&v=2&sensor=false&ke
> y=ABQIAAAAH0o897gTV-uqVu0r0jeY9hSoNArGV0GfotHRSP3gh8HeWN1lmxQDnBfXFnW5iG2
> L2xz9PzUevI5BTg" type="text/javascript"></script>
>
> >These link DOES NOT work:
>
> >http://www.reaganpower.com/loc2.aspx
>
> That page doesn't.
>
> If you want to use API functions, you have to load the API code that
> defines those functions.
>
> --
> Mike Williamshttp://econym.org.uk/gmap

--

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-api@googlegroups.com.
To unsubscribe from this group, send email to google-maps-api+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-maps-api?hl=en.

Open infowindow with a onmounseover javascript outside map

Hello!
I want to open the infowindow for a link (with onmouseover) outside
the map window.
Check out http://www.kuhlins.com/nyalv.php (only swedish but you will
see what I mean)

When a user does a onmouseover on a link to the left, the infowindow
on each map location shall open.

Can anyone help me?

--

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-api@googlegroups.com.
To unsubscribe from this group, send email to google-maps-api+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-maps-api?hl=en.

Re: geographical location of comercial sectors

What I want is to extract information from a map where a consultation
was made, for example, bakeries in Paris, and extract the geographical
locational (lat and lng) of each bakery label.

That is, I want to extract information from the search.

On 25 nov, 18:38, Rossko <ros...@culzean.clara.co.uk> wrote:
> > I wonder if you can get information from google maps of the
> > geographical location of comercial sectors, for example, pizzerias in
> > Paris and get the geographic location of them all, and thus eg. gas
> > stations, restaurants, supermarkets etc. ... Thank you.
>
> The map is a map. You might like to look into the Local Search APIhttp://code.google.com/apis/ajaxsearch/local.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-api@googlegroups.com.
To unsubscribe from this group, send email to google-maps-api+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-maps-api?hl=en.

Re: How to encode a polyline

> And then encode them so I can easily store on the database? Hmm.. yeah,
> that's a nice solution! But I was hopping to have an method (native) to do
> this job (directly convert the GPolyline object into encoded string). I'll
> implement it and post here, maybe it's gonna be useful for someone else! ;)

You might want to look at the code inside
http://gmaps-utility-library-dev.googlecode.com/svn/trunk/geometrycontrols/examples/test.html
which includes the bare-bones of "saving a polyline". Then you just
have to plug those lat/longs into the existing javascript encoding
utility.

--

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-api@googlegroups.com.
To unsubscribe from this group, send email to google-maps-api+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-maps-api?hl=en.

Re: Technical question about Google Maps marker overview

On Nov 25, 6:37 pm, webEater <andreaskal...@gmx.de> wrote:
> I see that the small dots are
> included as a separate PNG layer, but I don't get how you make them
> click, because there is no specific listener.

You just add a click listener to the map itself, and send the lat/lon
to the server, which determines which point was clicked.
You don't need any "framework" to do that. It's just to take the lat/
lon from the click into your favorite server side language and query
your database.

--
Marcelo - http://maps.forum.nu
--


>
> Is there a framework for a server side language to implement something
> like that?
> Is there a framework for Google Maps API (client)?
>
> Example:http://mlt1.google.com/mapslt?lyrs=lmq:8:cafe|s:100083498510612611957|h:14c|cc:DE|tr:2&x=66&y=43&z=7&w=256&h=256&gl=de&hl=de
>
> Best,
>
> Andreas

--

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-api@googlegroups.com.
To unsubscribe from this group, send email to google-maps-api+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-maps-api?hl=en.

Re: How to encode a polyline

> The problem is that I need to store the data on a database, and I'm having
> troubles to *convert a GPolyline into a compact encoded format*. In this
> example (http://code.google.com/apis/maps/documentation/polylineutility.html)
> it's possible to do that, but the difference is that I can only create a
> encoded polyline from latlng points, not the opposite (export a polyline to
> latlng points).

So get the lat/lng points of your polyline
See the documentation
http://code.google.com/apis/maps/documentation/reference.html#GPolyline.getVertex

--

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-api@googlegroups.com.
To unsubscribe from this group, send email to google-maps-api+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-maps-api?hl=en.