IUM Re: IUM Re: IUM Re: Google Map API

2009-06-01 Thread Jenny Gavin-Wear
Excellent .. thanks Ryan, will let you know how I get on with that, looks straightforward! Jenny -Original Message- From: Ryan Letulle [mailto:bayous...@gmail.com] Sent: 30 May 2009 20:03 To: cf-talk Subject: SPAM-MEDIUM Re: IUM Re: IUM Re: Google Map API This what I do. Hope

IUM Re: IUM Re: Google Map API

2009-05-30 Thread Jenny Gavin-Wear
this line assuming if it was bad the script would stop processing at this point, but still no marker. Jenny -Original Message- From: Ryan Letulle [mailto:bayous...@gmail.com] Sent: 28 May 2009 14:06 To: cf-talk Subject: SPAM-MEDIUM Re: IUM Re: Google Map API I assume you

Re: IUM Re: IUM Re: Google Map API

2009-05-30 Thread Ryan Letulle
[mailto:bayous...@gmail.com] Sent: 28 May 2009 14:06 To: cf-talk Subject: SPAM-MEDIUM Re: IUM Re: Google Map API I assume you are not getting any javascript errors? -- Ryan ~| Want to reach the ColdFusion community

IUM Re: Google Map API

2009-05-28 Thread Jenny Gavin-Wear
Umm .. no .. it's in there .. -Original Message- From: Paul Ihrig [mailto:pih...@gmail.com] Sent: 15 May 2009 13:55 To: cf-talk Subject: SPAM-MEDIUM Re: Google Map API map.addOverlay(marker); missing ; maybe On Fri, May 15, 2009 at 8:04 AM, Jenny Gavin-Wear jenn

IUM Re: Google Map API

2009-05-28 Thread Jenny Gavin-Wear
Subject: SPAM-MEDIUM Re: Google Map API Can we see what the rendered JS code looks like? There is the possibility that the marker you are creating has an invalid geocode. =] -- Alan Rother Adobe Certified Advanced ColdFusion MX 7 Developer Manager, Phoenix Cold Fusion User Group, AZCFUG.org

IUM Re: Google Map API

2009-05-28 Thread Jenny Gavin-Wear
Thanks Paul, but I put the ; in and no change -Original Message- From: Paul Ihrig [mailto:pih...@gmail.com] Sent: 15 May 2009 13:55 To: cf-talk Subject: SPAM-MEDIUM Re: Google Map API map.addOverlay(marker); missing ; maybe On Fri, May 15, 2009 at 8:04 AM, Jenny Gavin-Wear jenn

Re: IUM Re: Google Map API

2009-05-28 Thread Ryan Letulle
Subject: SPAM-MEDIUM Re: Google Map API map.addOverlay(marker); missing ; maybe On Fri, May 15, 2009 at 8:04 AM, Jenny Gavin-Wear jenn...@fasttrackonline.co.uk wrote: (message bumped with corrected subject ... help !!!) hi all .. trying to get a marker to show on the google map api

Re: Google Map API

2009-05-18 Thread Jeff Gladnick
You might also consider using the quite exellent cf_googlemap by John Blayter: http://www.blayter.com/john/cf_googlemap/ It handles all the javascript headaches for you. Can we see what the rendered JS code looks like? There is the possibility that the marker you are creating has an invalid

Re: Google Map API

2009-05-18 Thread Gerald Guido
Hey Jeff... Thanx for heads up on CF_googlemap. That is AWESOME!!! G! On Mon, May 18, 2009 at 12:10 PM, Jeff Gladnick jeff.gladn...@gmail.comwrote: You might also consider using the quite exellent cf_googlemap by John Blayter: http://www.blayter.com/john/cf_googlemap/ It handles all the

Re: Google Map API

2009-05-15 Thread Paul Ihrig
map.addOverlay(marker); missing ; maybe On Fri, May 15, 2009 at 8:04 AM, Jenny Gavin-Wear jenn...@fasttrackonline.co.uk wrote: (message bumped with corrected subject ... help !!!) hi all .. trying to get a marker to show on the google map api ... extract of code below .. anyone have any

Re: Google Map API

2009-05-15 Thread Brian Swartzfager
I don't see anything obviously wrong with it either (I don't know that the missing ; Paul pointed out would matter given that it's the last statement within a block, though I personally end every statement with a ; as a matter of habit). I assume that something on the page is calling your

Re: Google Map API

2009-05-15 Thread Alan Rother
Can we see what the rendered JS code looks like? There is the possibility that the marker you are creating has an invalid geocode. =] -- Alan Rother Adobe Certified Advanced ColdFusion MX 7 Developer Manager, Phoenix Cold Fusion User Group, AZCFUG.org

RE: Google Map API

2008-02-26 Thread Adrian Lynch
Yup, but would passing the lat and long the wrong way be causing the marker to be placed somewhere else? -Original Message- From: Jenny Gavin-Wear Sent: 26 February 2008 13:30 To: CF-Talk Subject: RE: Google Map API Thanks Adrian, If you try it, you can see the map is generated, it's

RE: Google Map API

2008-02-26 Thread Jenny Gavin-Wear
Thanks Adrian, If you try it, you can see the map is generated, it's just the placing of the marker that's the issue. -Original Message- From: Adrian Lynch [mailto:[EMAIL PROTECTED] Sent: 24 February 2008 10:55 To: CF-Talk Subject: RE: Google Map API After a quick scan, and maybe

RE: Google Map API

2008-02-24 Thread Adrian Lynch
After a quick scan, and maybe not the source of the problem, but you are passing in the lat and long the wrong way in a few places. GLatLng(#dLongitude#, #dLatitude#) should be GLatLng(#dLatitude#, #dLongitude#) Adrian -Original Message- From: Jenny Gavin-Wear Sent: 23 February 2008

Re: Google Map API and CF

2006-03-13 Thread Harry Watson
http://www.coldfusionpodcast.com/cfgooglemaps On 3/12/06, Casey Dougall [EMAIL PROTECTED] wrote: yeah, I'm using it but it's still in testing phase. http://www.saratoga.com/Business-DetailsMaps.cfm/BusinessID/364 The gmap code is from the following tutorial which shows a few examples of how

Re: Google Map API and CF

2006-03-12 Thread Claude Schneegans
my boss did before I started working there. It's a pretty cool app that locates former customers so our CSR's can try and get them back in the fold. May be you can still answer my question: it looks like the use of the API is binded to the domain name of your site, but is it possible to test it

Re: Google Map API and CF

2006-03-12 Thread Casey Dougall
yeah, I'm using it but it's still in testing phase. http://www.saratoga.com/Business-DetailsMaps.cfm/BusinessID/364 The gmap code is from the following tutorial which shows a few examples of how to use the code. http://tutorial397.easycfm.com/ I still have some troubles getting this to work in

RE: Google Map API and CF

2006-03-12 Thread Kevin Aebig
I am using it, and it is attached to a domain. We wanted to deploy maps to 250 client websites at the same time. Fortunately, many of those are under the same domain. The good news is that they don't limit you to the number of ID's you can generate, so other than being a huge pain in the butt,

RE: Google Map API and CF

2006-03-12 Thread Eric Roberts
To: CF-Talk Subject: Re: Google Map API and CF my boss did before I started working there. It's a pretty cool app that locates former customers so our CSR's can try and get them back in the fold. May be you can still answer my question: it looks like the use of the API is binded to the domain name

Re: Google Map API and CF

2006-03-12 Thread Claude Schneegans
The good news is that they don't limit you to the number of ID's you can generate, so other than being a huge pain in the butt Another alternative would be to use it in an IFRAME calling a template under your own domain. -- ___ REUSE CODE! Use custom tags;

Re: Google Map API and CF

2006-03-12 Thread John Blayter
I have been working on a CF tag to interface with the Google Map API. I am still looking for some beta testers before I make it publicly available. If you want to help test it please email me off list. http://www.blayter.com/john/cf_googlemap/ Thanks John Blayter [EMAIL PROTECTED] On 3/12/06,

Re: Google Map API and CF

2006-03-12 Thread Claude Schneegans
I would say no...I was looking at that too...I think you have to register for each domain... I just got an answer, and it's simpler than I thought ;-) Just ask for a key for http//localhost and you'll get one,... and it works ;-) Of course, you still also have to ask for a key for the final

RE: Google Map API and CF

2006-03-11 Thread Eric Roberts
Not yet...I just downloaded it to play with it. We do use it at work. I didn't design the application...my boss did before I started working there. It's a pretty cool app that locates former customers so our CSR's can try and get them back in the fold. It uses a Google map and pinpoints the