Google Maps API v3:是否有任何功能可以检查坐标是在省内还是国家/地区内

时间:2013-09-08 02:55:32

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

我想让用户自己介绍坐标(或她自己)。以下代码有效:

<head>
    <script src="http://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false" type="text/javascript"></script>

    <script type="text/javascript" >

    var geocoder;
    var map;

    function paintCoordsInMap() {
      geocoder = new google.maps.Geocoder();
      var lat = document.getElementById('lat').value;
      var lng = document.getElementById('lng').value;
      var latlng = new google.maps.LatLng(lat, lng);
      var mapOptions = {
        zoom: 15,
        center: latlng,
        mapTypeId: google.maps.MapTypeId.ROADMAP
      }
      map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);
    }

    </script>

    (...)
</head>


<body>
    (...)
    <f:field bean="alojamientoInstance" property="lat"/>
    <f:field bean="alojamientoInstance" property="lng"/>
    <button type='button' class="btn btn-primary" onclick="paintCoordsInMap()"> find coordinates in map! </button>  
    (...)
</body>

我想检查坐标是否在某个省(或国家/地区)内,如果没有,则启动Windows警报。如果没有,我会在地图中绘制一个包含省(或国家),复制角落的coordenates。像下面这样的代码应该工作(或多或少):

if (lat > 10.111 || lat < 30.1213 || lng < 40.234 || lat > 60.23423) {
    alert('it is outside the country/province!');
}

2 个答案:

答案 0 :(得分:3)

如果您要检查要检查的省或国家/地区的边界坐标,可以使用google.maps.geometry.poly.containsLocation方法确定输入的坐标是否在多边形内。

  

containsLocation(point:LatLng,polygon:Polygon)|布尔值|计算给定点是否位于指定的多边形内。

答案 1 :(得分:2)

作为一种选择,您可以执行反向地理编码,例如获取地址融合lat&amp; lng,并检查地址是否与您提及的省份匹配,例如:

var geocoder = new google.maps.Geocoder(),
    latlng = new google.maps.LatLng(lat, lng);
    geocoder.geocode({ 'latLng': latlng }, function (results, status) {
        if (status == google.maps.GeocoderStatus.OK) {
            if (results[1]) {                
                //get the required address & check
                console.log(results[1].formatted_address); 
            }
        } else {
            //failed
        }
    });