[Google Maps API v3] AddListener click event for polygons in GeoXML

2011-04-24 Thread Mark Thompson
I'm trying to figure out how I add a click event to polygons within 
GeoXML.   It used to be if I added one to the map, it was able to handle it, 
passing the overlay, but now it just ignores any event that is within a 
defined polygon.  It will pass an event if it's outside the polygon but 
inside the map.

The listener looks like this:

google.maps.event.addListener(map, 'click', function(event) {
alert("Changed");
});


-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: Distance between point and edge of polygon using GeoXML

2011-04-24 Thread Mark Thompson
Thanks, the new version of the library stops it from erroring out, but the 
line:

var 
distancetoedge=Math.round(bdccGeoDistanceToPolyMtrs(geoXml.docs[0].gpolygons[i],
 
point)*3.28);  

returns NaN when I display what's in distancetoedge.

I'm wondering if geoXml.docs[0].gpolygons[i] just isn't the appropriate way 
to pass a polygon to the function.

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: Distance between point and edge of polygon using GeoXML

2011-04-24 Thread geocode...@gmail.com
On Apr 24, 10:11 pm, Mark Thompson  wrote:
> Using API version 2 I wrote an application:
>
> http://www.alliedwasteidaho.com/trash-and-recycling/collection-map.ph...
>
> which determines a service day given an address.  Embedded in this
> is logic which allows the program to determine if the location is
> within a couple of hundred feet away from a border to tell them
> they should give us a call.   I did this using the function
> bdccGeoDistanceToPolyMtrs from BdccGeo.js
>
> The call to the function looked like this:
>
> var distance = bdccGeoDistanceToPolyMtrs(exml.gpolygons[i], point);
>
> I'm attempting to do the same thing but with the function call:
>
> var distance = bdccGeoDistanceToPolyMtrs(geoXml.docs[0].gpolygons[i],
> point);
>
> but it doesn't work.  I've narrowed it down to this line (omitting
> it makes the program work.   If helpful, the test version is at:

That library was written for v2 of the Google Maps API.  I ported a
version of it to v3:
http://geocodezip.com/scripts/v3_BdccGeo.js
I'm not sure if it will work for you (I modified it somewhat for my
own purposes).

  -- Larry

>
> http://www.alliedwasteidaho.com/trash-and-recycling/collection-map2.p...   
> (note it has a 2 in the filename).

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Distance between point and edge of polygon using GeoXML

2011-04-24 Thread Mark Thompson
Using API version 2 I wrote an application: 

http://www.alliedwasteidaho.com/trash-and-recycling/collection-map.php?location=Eagle&location_uid=419bf517d7a0e7e668c2984d31a3ff3f

which determines a service day given an address.  Embedded in this is logic 
which allows the program to determine if the location is within a couple of 
hundred feet away from a border to tell them they should give us a call.   I 
did this using the function bdccGeoDistanceToPolyMtrs from BdccGeo.js

The call to the function looked like this:

var distance = bdccGeoDistanceToPolyMtrs(exml.gpolygons[i], point);

I'm attempting to do the same thing but with the function call:

var distance = bdccGeoDistanceToPolyMtrs(geoXml.docs[0].gpolygons[i], 
point);

but it doesn't work.  I've narrowed it down to this line (omitting it makes 
the program work.   If helpful, the test version is at:

http://www.alliedwasteidaho.com/trash-and-recycling/collection-map2.php?location=Eagle&location_uid=419bf517d7a0e7e668c2984d31a3ff3f

(note it has a 2 in the filename).

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



Re: [Google Maps API v3] Re: InfoWindow causes my map to not appear

2011-04-24 Thread K Bowman
Yes, I see the map and an icon, but I'm missing the infowindow.  That's what
I'm trying to get working.

On Sun, Apr 24, 2011 at 2:47 PM, geocode...@gmail.com
wrote:

> On Apr 24, 1:45 pm, "geocode...@gmail.com" 
> wrote:
> > On Apr 24, 12:57 pm, K Bowman  wrote:
> >
> > > I thought that was the problem as well, but I did try just inserting
> the
> > > contentString text from the google map example and it was the same
> result.
> >
> > > The link ishttp://
> www.uniquehomeconcepts.ca/uniquehomeconcepts/index.php?option=...
> >
> > > Then click on the 'Show Map' button.
> >
> > > I'm not sure why this isn't working.  This worked in V2, with the same
> php
> > > string.
> >
> > I get a javascript error in FF:
> > Error: jQuery is not defined
> > Source File:
> http://www.uniquehomeconcepts.ca/uniquehomeconcepts/components/com_pr...
> > Line: 6
>
> BTW, I do see a map and an icon, but no infowindow appears.
>
>-- Larry
>
> >
> >
> > > On Sun, Apr 24, 2011 at 12:34 AM, Chris Broadfoot 
> wrote:
> > > > Got a link? I'm guessing this line is the cause of your problems:
> >
> > > > var contentString = ';
> >
> > > > You're outputting some random PHP string into JavaScript. Is the
> string
> > > > escaped for JS? What is the *output* of this PHP script?
> >
> > > > --
> > > >http://twitter.com/broady
> >
> > > > --
> > > > 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-api-v3+unsubscr...@googlegroups.com.
> > > > For more options, visit this group at
> > > >http://groups.google.com/group/google-maps-js-api-v3?hl=en.
> >
> >
>
> --
> 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-api-v3+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-maps-js-api-v3?hl=en.
>
>

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



Re: [Google Maps API v3] Re: InfoWindow causes my map to not appear

2011-04-24 Thread K Bowman
Hmm... there was a conflict between the template and the component
com_properties where both had slimbox.js jQuery defined and I was told by
the template developer i had to remove one which I did but apparently there
is now an error.  That doesn't have any influence on this issue though I
don't think.

On Sun, Apr 24, 2011 at 2:45 PM, geocode...@gmail.com
wrote:

> On Apr 24, 12:57 pm, K Bowman  wrote:
> > I thought that was the problem as well, but I did try just inserting the
> > contentString text from the google map example and it was the same
> result.
> >
> > The link ishttp://
> www.uniquehomeconcepts.ca/uniquehomeconcepts/index.php?option=...
> >
> > Then click on the 'Show Map' button.
> >
> > I'm not sure why this isn't working.  This worked in V2, with the same
> php
> > string.
>
> I get a javascript error in FF:
> Error: jQuery is not defined
> Source File:
> http://www.uniquehomeconcepts.ca/uniquehomeconcepts/components/com_properties/includes/js/slimbox.js
> Line: 6
>
>  -- Larry
>
>
> >
> > On Sun, Apr 24, 2011 at 12:34 AM, Chris Broadfoot 
> wrote:
> > > Got a link? I'm guessing this line is the cause of your problems:
> >
> > > var contentString = ';
> >
> > > You're outputting some random PHP string into JavaScript. Is the string
> > > escaped for JS? What is the *output* of this PHP script?
> >
> > > --
> > >http://twitter.com/broady
> >
> > > --
> > > 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-api-v3+unsubscr...@googlegroups.com.
> > > For more options, visit this group at
> > >http://groups.google.com/group/google-maps-js-api-v3?hl=en.
> >
> >
>
> --
> 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-api-v3+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-maps-js-api-v3?hl=en.
>
>

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: Returning Custom Shape Name Through Inquiry

2011-04-24 Thread Mark Thompson
I use MapPoint to create the shape files and then export them using
MPSuperShape.

On Apr 24, 6:37 pm, Matthew Sanders 
wrote:
> Is there a faster way to get the latlng for complex shapes than browsing
> through Google Maps and right clicking each vertice to get the coordinate
> and pasting it into a notepad?

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: Returning Custom Shape Name Through Inquiry

2011-04-24 Thread geocode...@gmail.com
On Apr 24, 5:37 pm, Matthew Sanders 
wrote:
> Is there a faster way to get the latlng for complex shapes than browsing
> through Google Maps and right clicking each vertice to get the coordinate
> and pasting it into a notepad?

Depends on what the complex shape is.  If you can get a shapefile for
it, you can convert that to KML, most places in the US have shapefiles
publicly/freely available if you can find the right place.  There are
polygon editors out there, you might even be able to use the editor in
MyMaps.

  -- Larry

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: Returning Custom Shape Name Through Inquiry

2011-04-24 Thread Matthew Sanders
Is there a faster way to get the latlng for complex shapes than browsing 
through Google Maps and right clicking each vertice to get the coordinate 
and pasting it into a notepad?

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Click on an image and open a slideshow

2011-04-24 Thread Diego S.
Hello,

Does anyone know a way to click on an image to appear within a
infowindow a slideshow (example: lightbox, shadowbox, jw image ),
already looked at some topics of the group, most could not understand.
If someone has made ​​an example of such a map, would be grateful. If
you have a way to just click on the marker and already see the
slideshow would be nice too. is a thing I want:
http://nativeecosystems.org/map/index_v3_5.html

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: InfoWindow causes my map to not appear

2011-04-24 Thread geocode...@gmail.com
On Apr 24, 1:45 pm, "geocode...@gmail.com" 
wrote:
> On Apr 24, 12:57 pm, K Bowman  wrote:
>
> > I thought that was the problem as well, but I did try just inserting the
> > contentString text from the google map example and it was the same result.
>
> > The link 
> > ishttp://www.uniquehomeconcepts.ca/uniquehomeconcepts/index.php?option=...
>
> > Then click on the 'Show Map' button.
>
> > I'm not sure why this isn't working.  This worked in V2, with the same php
> > string.
>
> I get a javascript error in FF:
> Error: jQuery is not defined
> Source 
> File:http://www.uniquehomeconcepts.ca/uniquehomeconcepts/components/com_pr...
> Line: 6

BTW, I do see a map and an icon, but no infowindow appears.

   -- Larry

>
>
> > On Sun, Apr 24, 2011 at 12:34 AM, Chris Broadfoot  wrote:
> > > Got a link? I'm guessing this line is the cause of your problems:
>
> > > var contentString = ';
>
> > > You're outputting some random PHP string into JavaScript. Is the string
> > > escaped for JS? What is the *output* of this PHP script?
>
> > > --
> > >http://twitter.com/broady
>
> > > --
> > > 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-api-v3+unsubscr...@googlegroups.com.
> > > For more options, visit this group at
> > >http://groups.google.com/group/google-maps-js-api-v3?hl=en.
>
>

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: InfoWindow causes my map to not appear

2011-04-24 Thread geocode...@gmail.com
On Apr 24, 12:57 pm, K Bowman  wrote:
> I thought that was the problem as well, but I did try just inserting the
> contentString text from the google map example and it was the same result.
>
> The link 
> ishttp://www.uniquehomeconcepts.ca/uniquehomeconcepts/index.php?option=...
>
> Then click on the 'Show Map' button.
>
> I'm not sure why this isn't working.  This worked in V2, with the same php
> string.

I get a javascript error in FF:
Error: jQuery is not defined
Source File: 
http://www.uniquehomeconcepts.ca/uniquehomeconcepts/components/com_properties/includes/js/slimbox.js
Line: 6

  -- Larry


>
> On Sun, Apr 24, 2011 at 12:34 AM, Chris Broadfoot  wrote:
> > Got a link? I'm guessing this line is the cause of your problems:
>
> > var contentString = ';
>
> > You're outputting some random PHP string into JavaScript. Is the string
> > escaped for JS? What is the *output* of this PHP script?
>
> > --
> >http://twitter.com/broady
>
> > --
> > 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-api-v3+unsubscr...@googlegroups.com.
> > For more options, visit this group at
> >http://groups.google.com/group/google-maps-js-api-v3?hl=en.
>
>

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



Re: [Google Maps API v3] InfoWindow causes my map to not appear

2011-04-24 Thread K Bowman
I thought that was the problem as well, but I did try just inserting the
contentString text from the google map example and it was the same result.

The link is
http://www.uniquehomeconcepts.ca/uniquehomeconcepts/index.php?option=com_properties&view=properties&Itemid=106

Then click on the 'Show Map' button.

I'm not sure why this isn't working.  This worked in V2, with the same php
string.

On Sun, Apr 24, 2011 at 12:34 AM, Chris Broadfoot  wrote:

> Got a link? I'm guessing this line is the cause of your problems:
>
> var contentString = ';
>
> You're outputting some random PHP string into JavaScript. Is the string
> escaped for JS? What is the *output* of this PHP script?
>
> --
> http://twitter.com/broady
>
> --
> 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-api-v3+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-maps-js-api-v3?hl=en.
>

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: infoWindows stop displaying after page is scrolled in Mobile Safari.

2011-04-24 Thread Alix Bergeret
(I forgot to say - do the above on the iPad for example)

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: infoWindows stop displaying after page is scrolled in Mobile Safari.

2011-04-24 Thread Alix Bergeret
Ah, I am having the exact same problem.

But I see that the same error occurs on Google's own example, here:
http://code.google.com/apis/maps/documentation/javascript/

To replicate the issue: 
- make sure your browser window is scrolled all the way to the top. 
- double click on "Bowling green" on the map (for example !).
- the map should zoom on to Bowling Green.

- now refresh the page to reset everything.
- scroll your browser window (NOT the map itself!) down quite a bit, but so 
you can still see "Bowling Green".
- Double click on it again.
- This time you are taken further south ! The difference in pixels depends 
on how much you have scroll down.

This basically means that scrolling down the page on Safari iOS messes up 
the coordinates themselves! This affects everything, including marker 
detection, hence the problem described above.

What is causing this? And how do we fix it?

Cheers!

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: Returning Custom Shape Name Through Inquiry

2011-04-24 Thread geocode...@gmail.com
On Apr 24, 9:29 am, Mark Thompson  wrote:
> Thanks, then I guess just one more question.  Are there any
> advantages to using GeoXML3 over what I'm using now (EGeoXML)?

You don't have a choice:
geoxml3 works with APIv3
egeoxml works with APIv2

If you move your map to v3, you can't use EGeoXML (well, I suppose you
could port it to v3 ...)

v2 of API has been "officially deprecated" by Google.

  -- Larry

>
> On Apr 24, 3:03 am, Rossko  wrote:
>
>
>
>
>
>
>
> > > Will GeoXml 3 allow
> > > everything I'm doing right now plus support KMZ files?
>
> > No; none of the client-side parsers can handle zipped files.

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: Returning Custom Shape Name Through Inquiry

2011-04-24 Thread Mark Thompson
Thanks, then I guess just one more question.  Are there any advantages
to using GeoXML3 over what I'm using now (EGeoXML)?

On Apr 24, 3:03 am, Rossko  wrote:
> > Will GeoXml 3 allow
> > everything I'm doing right now plus support KMZ files?
>
> No; none of the client-side parsers can handle zipped files.

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] השב: Different behavior between web browser and c++ window

2011-04-24 Thread Yuvalal Liron
Any advice anyone?
thanks

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: get the zip code or postal code of particular address

2011-04-24 Thread Rossko
> how can i get the zip code or postal code of particular address any
> idea or codes to share.. thanks in advance.. ^^

You could try the geocoder
http://code.google.com/apis/maps/documentation/javascript/services.html#Geocoding

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: Returning Custom Shape Name Through Inquiry

2011-04-24 Thread Rossko
> Will GeoXml 3 allow
> everything I'm doing right now plus support KMZ files?

No; none of the client-side parsers can handle zipped files.

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] Re: Returning Custom Shape Name Through Inquiry

2011-04-24 Thread Mark Thompson
I wrote the one for Allied Waste but I notice that the one you cite on the 
geocodezip website is much cleaner and doesn't use the EGeoXml library that 
I used.   I'm back trying to get help since we're tripling the size of the 
map and I wanted to use a compressed kmz file instead of a kml to get the 
size of the data file down.  

I noticed that you changed it the library to GeoXml3 from EGeoXml (I 
originally wrote this page for version 2 API).   Will GeoXml 3 allow 
everything I'm doing right now plus support KMZ files?

The current live version of the file which uses EGeoXML is at 
http://www.alliedwasteidaho.com/trash-and-recycling/collection-map.php?location=Eagle&location_uid=419bf517d7a0e7e668c2984d31a3ff3f



-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] get the zip code or postal code of particular address

2011-04-24 Thread jem
how can i get the zip code or postal code of particular address any
idea or codes to share.. thanks in advance.. ^^

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] get the zip code of particular address

2011-04-24 Thread jem
how can i get the zip code of particular address?

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.



[Google Maps API v3] get the zip code of particular address

2011-04-24 Thread jem
how can i get the zip code of particular address?

-- 
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-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.