I want to display google maps (mutliple markers etc) and just found that there is one paid solution "GMap 2.3" for PHP. I was looking for an open source solution. Do you guys code using Google Maps API functions or use any wrapper script? What are some good links for this?
views:
308answers:
4
+3
A:
I just use the google maps api. Several months ago I coded up a combination google maps / weather underground ajax data source for creating user-specific weather reports. curl was used on the php side for acting as a proxy for the weather data. the google map side really didn't need any php at all. It really just relies on javascript.
Try doing it without the paid libraries, chances are you'll find it's easier than you expect.
Jonathan Fingland
2009-06-02 14:13:38
Yes, thinking of the same. Just was looking if any good solutions available. Thankx.
Wbdvlpr
2009-06-02 14:34:25
A:
This is the api wrapper i use
http://www.phpinsider.com/php/code/GoogleMapAPI/
it works very well and it's open source
Galen
2009-06-02 14:20:46
I did visit this page, but its of year 2007. I was just thinking if there are relatively newer solutions. Thanks for your answer, anyway.
Wbdvlpr
2009-06-02 14:32:29
A:
We're updating the PHP Google Map API class (mentioned previously) to use the new V3 of the Google Maps JS APIs - you can get the updated project files at http://code.google.com/p/php-google-map-api
PHPGoogleMapAPI
2010-05-08 19:17:22