google maps can't find a place by coordinates

You need to find the nearest address using the coordinates in google maps

https://maps.googleapis.com/maps/api/geocode/json?latlng=44.832359,34.337244&key=***

If you send the coordinates of some places(cathedrals, operas, theaters, etc.), then everything is found, the answer to the desired coordinates is as follows:

{
   "results" : [],
   "status" : "ZERO_RESULTS"
}

Same result via geocoder:

var geo = new google.maps.Geocoder;
var geo2 = geo.geocode({

 location: {lat: 44.832359, lng: 34.337244}

}, function(results, status) {console.log(results)});
Author: J. Doe, 2016-10-21

1 answers

Most likely, the Crimea is actually blocked, you will have to do the same, but through Yandex

 0
Author: J. Doe, 2016-10-21 11:26:53