google.maps.Geocoder()错误地检测到地址

时间:2017-01-06 10:47:44

标签: google-maps google-maps-api-3

我想在地图上找到一个地址вулПівденна10містоОдеса

展望:

...

<script type="text/javascript" src="https://maps.google.com/maps/api/js?key=..."></script>

...

function addMarkerByAddress(id, Adres){
    var geocoder = new google.maps.Geocoder();
    geocoder.geocode( { 'address': Adres}, 
        function(results, status) {
            if (status == google.maps.GeocoderStatus.OK) {
                var latlng = results[0].geometry.location;
                var marker = addMarker({
                    id: id,
                    position: latlng
                });
            }
        });
}

结果,标记将出现在:вулПівденнадорога10містоОдеса

如果您访问maps.google.com并以交互方式输入вулПівденна10містоОдеса,Google会正确检测到它。

是否可以通过google.maps.Geocoder()来确定地址是否正确?

0 个答案:

没有答案