|
Hi all,
What behavior / component / plugin is everyone using for geocoding these days? I want to use either Yahoo or Google Maps and I've found a bakery article from Nate in 2007 but can't find the actual behavior anywhere:
As that was 5 years ago I guess there might be a more evolved solution now anyway?
THanks, Alex Alex Bovey Web Developer | Alex Bovey Consultancy Ltd Registered in England & Wales no. 6471391 | VAT no. 934 8959 65
[hidden email] | t 0844 567 8995 | m 07828 649386 | f 0870 288 9533 PHP | CakePHP | MySQL | jQuery | HTML5 | CSS3 | Drupal | Wordpress Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. To unsubscribe from this group, send email to [hidden email] For more options, visit this group at http://groups.google.com/group/cake-php |
|
I still use google maps.
but there the only evolution is going to "not free anymore" - so for high traffic sites this might not be the most suitable approach (or it might again if the money is not the issue). Am Mittwoch, 23. Mai 2012 19:53:07 UTC+2 schrieb Alex Bovey: Hi all, Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. To unsubscribe from this group, send email to [hidden email] For more options, visit this group at http://groups.google.com/group/cake-php |
|
https://github.com/dereklio/cakephp_geoip
https://github.com/neilcrookes/CakePHP-Yahoo-Geo-Planet-Plugin
-- On Wed, May 23, 2012 at 1:09 PM, euromark <[hidden email]> wrote: I still use google maps. Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. To unsubscribe from this group, send email to [hidden email] For more options, visit this group at http://groups.google.com/group/cake-php |
|
Might have some luck with this one.
On Thu, May 24, 2012 at 12:57 AM, Justin Edwards <[hidden email]> wrote: https://github.com/dereklio/cakephp_geoip Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. To unsubscribe from this group, send email to [hidden email] For more options, visit this group at http://groups.google.com/group/cake-php |
|
Data source for the GeoNames service:
https://github.com/signified/CakePHP-GeoNames-DataSource On Thu, May 24, 2012 at 4:00 PM, Justin Edwards <[hidden email]> wrote: > Might have some luck with this one. > > http://geocoder.us/help/php_kenny.shtml > http://geocoder.us/help/php_pear.shtml > > > On Thu, May 24, 2012 at 12:57 AM, Justin Edwards <[hidden email]> > wrote: >> >> https://github.com/dereklio/cakephp_geoip >> https://github.com/neilcrookes/CakePHP-Yahoo-Geo-Planet-Plugin >> >> >> On Wed, May 23, 2012 at 1:09 PM, euromark <[hidden email]> >> wrote: >>> >>> I still use google maps. >>> but there the only evolution is going to "not free anymore" - so for high >>> traffic sites this might not be the most suitable approach (or it might >>> again if the money is not the issue). >>> >>> >>> Am Mittwoch, 23. Mai 2012 19:53:07 UTC+2 schrieb Alex Bovey: >>>> >>>> Hi all, >>>> >>>> What behavior / component / plugin is everyone using for geocoding these >>>> days? >>>> >>>> I want to use either Yahoo or Google Maps and I've found a bakery >>>> article from Nate in 2007 but can't find the actual behavior anywhere: >>>> >>>> http://bakery.cakephp.org/articles/nate/2007/04/13/geocoding-in-cakephp >>>> >>>> As that was 5 years ago I guess there might be a more evolved solution >>>> now anyway? >>>> >>>> THanks, >>>> >>>> Alex >>>> >>>> -- >>>> Alex Bovey >>>> Web Developer | Alex Bovey Consultancy Ltd >>>> Registered in England & Wales no. 6471391 | VAT no. 934 8959 65 >>>> [hidden email] | t 0844 567 8995 | m 07828 649386 | f 0870 288 9533 >>>> PHP | CakePHP | MySQL | jQuery | HTML5 | CSS3 | Drupal | Wordpress >>>> >>> -- >>> Our newest site for the community: CakePHP Video Tutorials >>> http://tv.cakephp.org >>> Check out the new CakePHP Questions site http://ask.cakephp.org and help >>> others with their CakePHP related questions. >>> >>> >>> To unsubscribe from this group, send email to >>> [hidden email] For more options, visit this group >>> at http://groups.google.com/group/cake-php >> >> > > -- > Our newest site for the community: CakePHP Video Tutorials > http://tv.cakephp.org > Check out the new CakePHP Questions site http://ask.cakephp.org and help > others with their CakePHP related questions. > > > To unsubscribe from this group, send email to > [hidden email] For more options, visit this group at > http://groups.google.com/group/cake-php -- Simon Males -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. To unsubscribe from this group, send email to [hidden email] For more options, visit this group at http://groups.google.com/group/cake-php |
|
When is says:
2. Add the following to your model: public $useDbConfig = 'geoNames'; public $useTable = false; Does that go in my Locations controller or do I make another controller? If it goes into my Locations Controller, will the line "public $useTable = false;" keep my model from accessing its DB table? Thanks. ~Michael On Sat, May 26, 2012 at 12:33 AM, Simon Males <[hidden email]> wrote: > Data source for the GeoNames service: > > https://github.com/signified/CakePHP-GeoNames-DataSource -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. To unsubscribe from this group, send email to [hidden email] For more options, visit this group at http://groups.google.com/group/cake-php |
|
I meant my Location Model, not Controller.
On Sat, May 26, 2012 at 9:22 AM, Michael Gaiser <[hidden email]> wrote: > When is says: > > 2. Add the following to your model: > > public $useDbConfig = 'geoNames'; > public $useTable = false; > > > > Does that go in my Locations controller or do I make another controller? > If it goes into my Locations Controller, will the line "public > $useTable = false;" keep my model from accessing its DB table? > > Thanks. > > ~Michael > > On Sat, May 26, 2012 at 12:33 AM, Simon Males <[hidden email]> wrote: >> Data source for the GeoNames service: >> >> https://github.com/signified/CakePHP-GeoNames-DataSource -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. To unsubscribe from this group, send email to [hidden email] For more options, visit this group at http://groups.google.com/group/cake-php |
| Powered by Nabble | Edit this page |
