tags:

views:

185

answers:

2

Given just one point in Google Maps, is there anyway to know the distance to the nearest point in the coast (that is the minimun distance to the sea), and which point in the coast it is?

Thanks in advance.

+1  A: 

There is no documented method in the Google Maps API that will return the distance to the coast.

However, you may want to check out the following article:

The author describes a "point-to-polyline distance" function that was used with the GSHHS1 dataset to find out how far a point is to the sea.


1 GSHHS is a high-resolution shoreline data set amalgamated from two databases in the public domain. The data have undergone extensive processing and are free of internal inconsistencies such as erratic points and crossing segments. The shorelines are constructed entirely from hierarchically arranged closed polygons. The data can be used to simplify data searches and data selections, or to study the statistical characteristics of shorelines and land-masses. It comes with access software and routines to facilitate decimation based on a standard line-reduction algorithm.

Daniel Vassallo
Distance Point to Polyline or Polygon. This seems a very interesting solution. Thank you very much.
Jesús
A: 

we did something similar to that for Booli.se, on the map search functionality. For each listing we precompute the distance to the ocean by checking the point against the tiles served by google. Check for water color in the image, and calculate the distance. I'm afraid that there is no pre-built functionality for this.

PatrikAkerstrand
Thank you for your response, actually I was thinking in a pre-built functionality, included in the API, what would make thing easier.
Jesús