I have a system where users put some coordinates (latitude/longitude), I need to check if specified coordinates are in the sea or not. Is there any service that could give me the answer. Or is it possible to do this using google maps.
I have a system where users put some coordinates (latitude/longitude), I need to check
Share
You can use the Google Maps Geocode API.
If your address is in land, the result_type of the response will be something like “administrative_area”. if you are in the sea, the response will be “natural_feature”.
Here are two examples:
Edit: Some more examples in response to comments: