Follow the code:
Try 1: (It works)
var address = "Osasco - SP, Brasil";
var locationService = new GoogleLocationService();
var point = locationService.GetLatLongFromAddress(address);
Attempt 2: (Not working)
var address = "uol - Rua dos Autonomistas - Santa Paula, São Caetano do Sul - SP, Brasil";
var locationService = new GoogleLocationService();
var point = locationService.GetLatLongFromAddress(address);
Because on the second try, the variable point is null? Variable null point I can not get lat and long.
I've tried to get lat and long through this website . Same does not work with this name:
uol - Rua dos Autonomistas - Santa Paula, São Caetano do Sul - SP, Brazil
By google maps official he finds lat and long: link
Any bright solution?