When viewing google maps for New York, We can see many metro stations. How can I get nearby Metro station\'s data?
For example, I send a request contain the latitud
You can use the Places Library for this. By feeding in the type into the request. You can view the supported types here
type
var request = { location: pyrmont, radius: '500', types: ['subway_station', 'train_station'] };
Although I dunno how to get which metro lines are available at the station.