谷歌地图v3完全填写圈子

时间:2011-07-01 14:42:11

标签: google-maps-api-3 geometry

我创建了一个地图,允许用户围绕具有指定半径的点绘制圆。出于某种原因,圆圈没有完全填满,当地图放大时,这尤其明显。也许有人有一个解决方案,即使在更高的缩放级别观看时也能完全填充圆圈

见下面的代码

<!DOCTYPE html> 
<html> 
<head> 
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" /> 
 <style type="text/css">  
    html { height: 100% }   
    body { height: 100%; margin: 0px; padding: 0px }  
    #map_canvas { height: 100% } 
 </style> 
<script type="text/javascript"   
 src="http://maps.google.com/maps/api/js?sensor=false"> 
 </script> 


</script>
<script type= "text/javascript">

   var geocoder;   
    var map;  
    var count=0;
    //Store points in array 
    var points = [];



function initialize() {    
    geocoder = new google.maps.Geocoder();     
    var latlng = new google.maps.LatLng(-34.397, 150.644);    
    var myOptions = {       
    zoom: 3,      
    center: latlng,       
    mapTypeId: google.maps.MapTypeId.ROADMAP    
   }     
map = new google.maps.Map(document.getElementById("map_canvas"),myOptions);  
}    
function codeAddress() {    
var address = document.getElementById("address").value;
geocoder.geocode( { 'address': address}, function(results, status) {       
    if (status == google.maps.GeocoderStatus.OK) {         
    map.setCenter(results[0].geometry.location);        
    var marker = new google.maps.Marker({          
        map: map,             
        position: results[0].geometry.location
        }); 

    }
     else {        
    alert("Geocode was not successful for the following reason: " + status);       
    }     
    });   
    }
function plusCount(){
if (count==2){
count=0;
}
else{
count=count +1;
}
}   

function drawCircle() {
var address=document.getElementById("address").value;
var radius=document.getElementById("radius").value;
var latitude=40;
var longitude=0;
geocoder.geocode( { 'address': address}, function(results, status){
if (status==google.maps.GeocoderStatus.OK){
latlng=(results[0].geometry.location);
latitude=latlng.lat();
longitude=latlng.lng();
alert(latitude);
alert(longitude);
alert (radius);
}   

else{
    alert("Geocode was not successful for the following reason: " + status);
}
});





//Degrees to radians 
  var d2r = Math.PI / 180;
  alert("calc d2r " + d2r);
 //  Radians to degrees
 var r2d = 180 / Math.PI;
 alert("calc r2d " + r2d);
// Earth radius is 3,963 miles
 var cLat = (radius / 3963) * r2d;
alert("calc cLat " + cLat);
 var cLng = cLat / Math.cos(latitude * d2r);
   alert("calc cLng " + cLng);




  // Calculate the points
  // Work around 360 points on circle
 for (var i=0; i < 360; i++) {

   var theta = Math.PI * (i/16);

   // Calculate next X point 
   circleY = longitude + (cLng * Math.cos(theta));            
    // Calculate next Y point 
   circleX = latitude + (cLat * Math.sin(theta));
    // Add point to array 
    points.push(new google.maps.LatLng(circleX, circleY));


 };


    alert("completed loop");

    var colors=["#CD0000","#2E6444","#003F87" ];

    var Polyline_Path = new google.maps.Polyline({
    path: points,
   strokeColor: colors[count],
    // color of the outline of the polyline
    strokeOpacity: 1,
    // between 0.0 and 1.0
   strokeWeight: 1,
   // The stroke width in pixels
   fillColor: colors[count],
    fillOpacity: .5
   });
    Polyline_Path.setMap(map);


 }

function clearMap(){
if(points){
for( i in points){
points[i].setMap(null);
}
points.length=0;

   }}


</script>
</head>
    <body onload="initialize()"> 
       <div id="map_canvas" style="width:500px; height:460px;
       -moz-outline-radius:20px; -moz-box-sizing:padding-box; -moz-outline-      style:solid ;-moz-outline-color:#9FB6CD; 
    -   moz-outline-width:10px;"></div>  
        <div>     
        Zip Code: <input id="address" type="textbox" value="">    
        Radius:<input id="radius" type="textbox" value="">
        <input type="button" value="Find" onclick="codeAddress() ">   
        <input type="button" value="Draw Radius" onclick= "drawCircle() ; plusCount()">
        <input type="button" value="Reset" onclick= "clearMap()">
    </div> 
</body>

4 个答案:

答案 0 :(得分:2)

看起来你手动绘制圆圈,但你可以使用 google.maps.Circle 这对我有用,并完全填满了圈子。这是我在我的应用程序中使用的代码段,它也可以在最大缩放级别下工作:

var circ = new google.maps.Circle({
    'center':lc,
    'clickable':false,
    'fillColor':"#00FFFF",
    'fillOpacity':0.2, 
    'map':currentmap,
    'radius':75, 
    'strokeColor':'#0000A0',
    'strokeOpacity':'0.5'
});

lc 是我的中心点, currentmap 是地图div

答案 1 :(得分:0)

此方法适用于我

var options = {
    strokeColor: #CD0000,
    strokeOpacity: 0.8,
    strokeWeight: 2,
    fillColor: #2E6444,
    fillOpacity: 0.5,
    map: map,
    center: latlng,
    radius: parseInt(radius)
};

var circle = new google.maps.Circle(options);

答案 2 :(得分:0)

var drawInnerZone=
        {
            strokeColor: "#61A0A8",
            strokeOpacity: 0.2,
            strokeWeight: 1,
            fillColor: "#61A0A8",
            fillOpacity: 0.8,
            map: map,
            center: NearMatches['InnerZone'].center,   //Latlng
            radius: NearMatches['InnerZone'].Distance  //radius
        };  
MatchZone1 = new google.maps.Circle(drawInnerZone);     

它对我有用..

答案 3 :(得分:0)

富家的答案在我的项目中正确运作

function searchLocations() {
     var image='image/male.png'
     var a = document.getElementById("radiusSelect").value; 
     var address = document.getElementById("addressInput").value;
     var geocoder = new google.maps.Geocoder();
     geocoder.geocode({'address': address}, function(results, status) {
     if (status == google.maps.GeocoderStatus.OK) {
       map.setCenter(results[0].geometry.location);
       var marker = new google.maps.Marker({
        map: map,
        position: results[0].geometry.location,
        icon: image
    });
    var circle = new google.maps.Circle({
         map: map,
          radius: parseInt(a),    // 10 miles in metres
         fillColor: '#AA0000'
            });
    circle.bindTo('center', marker, 'position');
    searchLocationsNear(results[0].geometry.location);
   } 
   else {
     alert(address + ' not found');
   }
  });
 }
相关问题