1

I'm trying to use google maps and need to get natural feature like ocean, sea, etc. All i need is just names but all i get is ZERO_RESULTS. My request is like http://maps.googleapis.com/maps/api/geocode/json?latlng=0,0&sensor=true_or_false . Is it possible to get natural features with lat/lon ? Please turn me in right direction

Stanislav Bondar
  • 6,056
  • 2
  • 34
  • 46

1 Answers1

0

You can use Place API with type

var request = {
    location : {
        lat : 0,
        lng : 0
    },
    radius : radius,
    types: ['natural_feature']
};
Verma
  • 8,199
  • 2
  • 15
  • 17