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
Asked
Active
Viewed 753 times
1 Answers
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
-
2can you speak android? – Stanislav Bondar Mar 06 '15 at 19:52
-
1Note: The types below are not supported in the types filter of a place search, or in the types property when adding a place. natural_feature – Stanislav Bondar Mar 06 '15 at 21:04