[Google Maps API v3] Re: 2011/3/2 - New Release

2011-03-08 Thread Jason Jonas
We're using a labeled marker. The labels stopped appearing until I set the version explicitly to 3.3. I'm not sure what the issue is, but if someone wants to check it out, here are a couple of links - one without the labels and one with: http://spotwalla.com/label-marker-error.html http://spot

[Google Maps API v3] Elevation API = Multi-Location Request

2010-10-09 Thread Jason Jonas
So given the usage limits of the Elevation API, I'm reworking the code to issue a multi-location request. The elevation data is being stored in a database so I need to reliably attribute each elevation response to the appropriate coordinate. The issue is the submitted coords are not the same as the

[Google Maps API v3] Re: Elevation API Usage Limits

2010-10-08 Thread Jason Jonas
t; > -- Luke > > > > On Fri, Oct 8, 2010 at 5:14 AM, Jason Jonas wrote: > > I posted this over in the V2 forum as well since that's where the > > Elevation API docs requested feedback. My apologies for the double- > > posting. > > > Jason > > >

[Google Maps API v3] Re: Elevation API Usage Limits

2010-10-07 Thread Jason Jonas
I posted this over in the V2 forum as well since that's where the Elevation API docs requested feedback. My apologies for the double- posting. Jason On Oct 7, 7:38 am, Jason Jonas wrote: > Not sure if this was clear in the original message, but each location > request is a single

[Google Maps API v3] Re: Elevation API Usage Limits

2010-10-07 Thread Jason Jonas
Not sure if this was clear in the original message, but each location request is a single-coordinate request. Jason -- 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...@goog

[Google Maps API v3] Re: Event Bug in main.js?

2010-10-07 Thread Jason Jonas
Thanks, Rossko. I'll look into that. Jason On Oct 6, 2:15 pm, Rossko wrote: > > So I thought it might be the null MouseEvent and tried: > >http://spotwalla.com/event-03.html > > In this case, the inline code to trigger the event on 'map' is > executed before the map itself has been initialised (

[Google Maps API v3] Elevation API Usage Limits

2010-10-07 Thread Jason Jonas
The elevation API documentation indicates non-premiere members have a usage limit of 25,000 location requests per day. The docs also state that each request can have no more than 2,500 locations. With last night's upgrade we turned on an elevation component. It runs every 10 minutes and makes up t

[Google Maps API v3] Re: Event Bug in main.js?

2010-10-06 Thread Jason Jonas
e samples and only making minor changes to the code, like making > the latlng dynamic... > > http://devint.meaningfulfunerals.net/fh/facilities/facilities/address... > > In FF I get "a is null" and the error is on line 25.  same js file. > > Eric > > > > On

[Google Maps API v3] Re: Event Bug in main.js?

2010-10-06 Thread Jason Jonas
Just bumping this up one time... On Oct 4, 9:18 pm, Jason Jonas wrote: > After the page is loaded I'm trying to generate a click event so the > map has the focus. In V2 we used: > > var event = {srcElement: map_canvas, target: map_canvas, nodeType: 1}; > GEvent.trigger(docu

[Google Maps API v3] Re: Copyright - Magazine Article

2010-10-05 Thread Jason Jonas
Thanks, Luke. That should answer all the questions. Jason On Oct 5, 10:09 pm, Luke Mahé wrote: > Hey Jason, > > Have a read ofhttp://www.google.com/permissions/geoguidelines.htmland see > if that satisfies your concerns. > > Thanks > > -- Luke > > > > On Wed,

[Google Maps API v3] Copyright - Magazine Article

2010-10-05 Thread Jason Jonas
Not sure if this is the correct place to post this... I'm writing a magazine article about personal location management and would like to include a few map images. All Google and Google partner logos will remain on the images. I perused the terms (http:// code.google.com/apis/maps/terms.html) and

[Google Maps API v3] Re: Any recommendations for a PHP Class to handle API calls for me?

2010-10-05 Thread Jason Jonas
James, I know of no PHP library for making GMAPI requests, but then I never looked for one either. :) Like you, I'm not johnny-javascript and essentially employ the learn-by-hacking method. Working with the geocoder in PHP is quite simple. At SpotWalla our geoCoder is a cron-managed PHP script th

[Google Maps API v3] Event Bug in main.js?

2010-10-04 Thread Jason Jonas
After the page is loaded I'm trying to generate a click event so the map has the focus. In V2 we used: var event = {srcElement: map_canvas, target: map_canvas, nodeType: 1}; GEvent.trigger(document, "click", event); And it works perfectly. I made what seems like the appropriate v3 substitutions i

[Google Maps API v3] Re: Firing a Cick Event

2010-09-22 Thread Jason Jonas
On Sep 22, 9:17 am, "geocode...@gmail.com" wrote: > > That is a different question.  I think there have been some > discussions of how to do that on the v2 group (I don't remember seeing > any here).  You might try searching over there, the concepts should > apply. > Hmmm... In my original post I

[Google Maps API v3] Re: Firing a Cick Event

2010-09-22 Thread Jason Jonas
On Sep 22, 8:53 am, "geocode...@gmail.com" wrote: > > Did you try: > javascript:google.maps.event.trigger(mCR, "click"); > (entering that in the address bar opens an infowindow for me (on the > mCR marker)). > Hey, Larry. Thanks for taking a look. I just tried that and it certainly opens the In

[Google Maps API v3] Firing a Cick Event

2010-09-22 Thread Jason Jonas
I have a number of users that prefer to use the keyboard to navigate the map. After the map is loaded I've used the following v2 code to generate a click event so the map has the focus: var event = {srcElement: map_canvas, target: map_canvas, nodeType: 1}; GEvent.trigger(document, "click", event);

[Google Maps API v3] Re: IE 8 Bug?

2010-09-21 Thread Jason Jonas
grade which is currently scheduled for the 1st or 2nd week of October. Jason On Sep 21, 12:03 pm, Jason Jonas wrote: > I started porting my app to v3 and have run into an issue with IE 8. > This page works on the latest versions of FF, Safari, Chrome and IE 7. > > http://spotwalla.com/v3

[Google Maps API v3] Re: Clickeable Custom Icon

2010-09-21 Thread Jason Jonas
Sounds like you're looking for an InfoWindow, perhaps. When it's setup correctly, the InfoWindow will appear when a user clicks on the marker. The content of the InfoWindow is completely up to you. http://code.google.com/apis/maps/documentation/javascript/reference.html#InfoWindow Jason On Sep 2

[Google Maps API v3] IE 8 Bug?

2010-09-21 Thread Jason Jonas
I started porting my app to v3 and have run into an issue with IE 8. This page works on the latest versions of FF, Safari, Chrome and IE 7. http://spotwalla.com/v3.php Honestly, I'm not johnny-JavaScript and I'm not sure if the issue is within the MarkerWithLabel class or in main.js. I looked at