Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/google-maps/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Javascript 如何添加一个圆,并通过点击谷歌地图获得圆的坐标和半径?_Javascript_Google Maps - Fatal编程技术网

Javascript 如何添加一个圆,并通过点击谷歌地图获得圆的坐标和半径?

Javascript 如何添加一个圆,并通过点击谷歌地图获得圆的坐标和半径?,javascript,google-maps,Javascript,Google Maps,我想在地图上单击一下就创建一个圆,同时我还想收集圆的纬度/经度信息及其半径。请建议我如何使用JavaScript 问候,, Madhu感谢您的回复,我们如何获取纬度/经度和半径。 <!DOCTYPE html> <html> <head> <meta name="viewport" content="initial-scale=1.0, user-scalable=no"> <meta charset="utf-8"> <titl

我想在地图上单击一下就创建一个圆,同时我还想收集圆的纬度/经度信息及其半径。请建议我如何使用JavaScript

问候,,
Madhu

感谢您的回复,我们如何获取纬度/经度和半径。
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<title>Circles</title>
<style>
  html, body, #map-canvas {
    height: 100%;
    margin: 0px;
    padding: 0px
  }
</style>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
<script>
// This example creates circles on the map with fixed radius of 5km

var cityCircle;

function initialize() {
// Create the map.
var mapOptions = {
zoom: 14,
center: new google.maps.LatLng(37.09024, -95.712891),//can use your center
mapTypeId: google.maps.MapTypeId.TERRAIN
};

var map = new google.maps.Map(document.getElementById('map-canvas'),
  mapOptions);

google.maps.event.addListener(map, "click", function (e) {

//lat and lng is available in e object
var latLng = e.latLng;
// Construct the circleOptions
var circleOptions = {
  //optional to modify
 /* strokeColor: '#FF0000',
  strokeOpacity: 0.8,
  strokeWeight: 2,
  fillColor: '#FF0000',
  fillOpacity: 0.35,*/
  map: map,
  center: latLng,
  radius: 5000 //in meters apporx.
};
// Add the circle for this city to the map.
cityCircle = new google.maps.Circle(circleOptions);
});

}

google.maps.event.addDomListener(window, 'load', initialize);

</script>
</head>
<body>
<div id="map-canvas"></div>
</body>
</html>