Link to home
Start Free TrialLog in
Avatar of milkwood
milkwoodFlag for Australia

asked on

Create polygons with Google Earth

I have developed a farming application that gives fertilizer recommendations based on soil tests.
I would like to add a facility that allowed the user to log onto a web site and draw the paddocks (polygon) and sites (pin) where the tests were taken. This information would be saved on a SQLServer 2008 database with date and Geo-location

Is this feasible?
Where do I start?
Use Google maps?
Avatar of Ray Paseur
Ray Paseur
Flag of United States of America image

It is feasible and you would want to start by either learning a scripting language that can talk to a server-side data base, or by hiring someone who already knows a scripting language.  It's likely to be a substantial development project.  Google Maps is a great tool for something like this.  You will need to use JavaScript on the client side of things and send the client information to the server.  While none of this is rocket science, it is bespoke custom programming.

How did you decide on using SQLServer 2008?
Avatar of milkwood

ASKER

I am using SQL2008 because I use the Microsoft Synchronization services to update SQLCE databases on remote devices. I not aware of any other way to do this - although Cloud may be the way to go, but I have a substantial amount of work done already.
With regards to Javascript although I haven't used it a lot I am very familiar with Objective-C, .Net and c#. I am also familiar with MySql

Any ideas of where I might find some sample code?
ASKER CERTIFIED SOLUTION
Avatar of Ray Paseur
Ray Paseur
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of leakim971
Take a look here :
https://developers.google.com/maps/documentation/javascript/layers?hl=fr#KMLLayers

 This KML looks (and somewhat behaves) like familiar V3 overlay elements. KML <Placemark> and GeoRSS point elements are rendered as markers, for example, <LineString> elements are rendered as polylines and <Polygon> elements are rendered as polygons