Marco > When i select the "show in google earth link' checkbox, i see the link but still above > i see "#attributes.stParam.title#", seems it doesn't get outputted?
Yep, poor checking on my behalf - corrected now > Is it somehow possible to adjust the google map config so we can enter 2 key's Yes, this is possible. You can do this a number of ways. The recent changes to the API key management now look for the key in one of three (ordered) places (once a key is found it stops looking): 1. Application.stplugins.googleMaps.stKeys.<machine_name>. i.e. Application.stplugins.googleMaps.stKeys.localhost = "MY_TESTING_KEY" Application.stplugins.googleMaps.stKeys.big_time_production= "MY_PRODUCTION_KEY_HERE" 2. Application.stplugins.googlemaps.apikey. i.e. <farcry:machineSpecific name="localhost"> <cfscript> Application.stplugins.googlemaps.apikey = "MY_TESTING_KEY"; </cfscript> </farcry:machineSpecific> <farcry:machineSpecific name="big_time_production"> <cfscript> Application.stplugins.googlemaps.apikey = "MY_PRODUCTION_KEY_HERE"; </cfscript> </farcry:machineSpecific> 3. The (database-based) FC5 config You can set the first two options in your project's _serverSpecificVarsAfterInit.cfm template. I favour option 3 for FC5 installs - esp. as I have found that localhost will work without a GM API key. I have uploaded an new ZIP to http://bugs.farcrycms.org/browse/GM-13 - Gee, write access to SVN would be good ;-) Cheers David --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "farcry-dev" group. To post to this group, send email to farcry-dev@googlegroups.com To unsubscribe from this group, send email to farcry-dev+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/farcry-dev?hl=en -~----------~----~----~----~------~----~------~--~---