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.event.addDomListener(window, 'load', initialize);
But when i add the following to include the circle it breaks and doesn't load;
/**
* 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);
// Add a Circle overlay to the map.
var circle = new google.maps.Circle({
map: map,
center: new google.maps.LatLng(50.272213,-5.054973),
fillColor: #00FF00,
fillOpacity: 0.2,
strokeColor: #00FF00,
strokeOpacity: 0.4,
strokeWeight: 2
});
circle.setRadius(18362.55489862987);
}
// Register an event listener to fire when the page finishes loading.
google.maps.event.addDomListener(window, 'load', initialize);
If somebody could point out where im going wrong please...