On Mar 17, 8:28 pm, Rob <[email protected]> wrote:
> I'm working on a map athttp://www.rotaryseaway.org/, and for whatever
> reason map.getBoundsZoomLevel(bounds) does not seem to be doing its
> thing.  I'm just not comfortable enough with Google Maps API to be
> able to find it, though I've certainly tried.
>
> As you might assume, my Latitude/Longitude and other data is drawn
> from a database.  The data looks clean upon direct inspection of the
> MySQL table data - I've learned that bad data can mess up a google map
> pretty thoroughly.
>
> Can anyone suggest where I've gone wrong?

Your sw point is east of your ne point...
        var sw = new GLatLng(44.220553457491,-74.6867);
        var ne = new GLatLng(45.0231,-76.562);

Try:
        var sw = new GLatLng(44.220553457491,-76.562);
        var ne = new GLatLng(45.0231,-74.6867);

  -- Larry


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Maps API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/Google-Maps-API?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to