Circle overlay in Google Map V3 API js
问题 I am trying to insert this circle on a google map, the map displays fine by including the following js file in the header; /** * Called on the intiial page load. */ function initialize() { var latLng = new google.maps.LatLng(50.272213,-5.054973); var options = { 'zoom': 9, 'center': latLng, 'mapTypeId': google.maps.MapTypeId.ROADMAP }; var map = new google.maps.Map(document.getElementById('map'), options); } // Register an event listener to fire when the page finishes loading. google.maps