I've a website with the google maps api which is loaded asynchronous. But this throws a errer: google is not found. My code is:
<script>
function initialize() {
var mapOptions = {
zoom: 10,
center: new google.maps.LatLng(51.817116, 4.780616),
mapTypeId: google.maps.MapTypeId.ROADMAP,
panControl: false,
mapTypeControl: false,
scaleControl: false,
streetViewControl: false,
overviewMapControl: false,
rotateControl: false
};
var map = new google.maps.Map(document.getElementById('maps'),
mapOptions);
};
var customMarker = new google.maps.Marker({
position: new google.maps.LatLng(51.817116, 4.780616),
map: map
});
function loadScript() {
var script = document.createElement('script');
script.type = 'text/javascript';
script.src = ';sensor=false&' +
'callback=initialize';
document.body.appendChild(script);
}
addLoadEvent(loadScript);
</script>
When I delete the marker the code works correctly. Why is'nt it working if I add the marker as specified in some examples?
The addLoad is a load event. That's not the problem... Can anybody help me to get this working?
I've a website with the google maps api which is loaded asynchronous. But this throws a errer: google is not found. My code is:
<script>
function initialize() {
var mapOptions = {
zoom: 10,
center: new google.maps.LatLng(51.817116, 4.780616),
mapTypeId: google.maps.MapTypeId.ROADMAP,
panControl: false,
mapTypeControl: false,
scaleControl: false,
streetViewControl: false,
overviewMapControl: false,
rotateControl: false
};
var map = new google.maps.Map(document.getElementById('maps'),
mapOptions);
};
var customMarker = new google.maps.Marker({
position: new google.maps.LatLng(51.817116, 4.780616),
map: map
});
function loadScript() {
var script = document.createElement('script');
script.type = 'text/javascript';
script.src = 'https://maps.googleapis./maps/api/js?v=3&sensor=false&' +
'callback=initialize';
document.body.appendChild(script);
}
addLoadEvent(loadScript);
</script>
When I delete the marker the code works correctly. Why is'nt it working if I add the marker as specified in some examples?
The addLoad is a load event. That's not the problem... Can anybody help me to get this working?
Share Improve this question edited Dec 4, 2013 at 22:20 Andy 63.6k13 gold badges71 silver badges98 bronze badges asked Dec 4, 2013 at 21:50 ArjanSchoutenArjanSchouten 1,3689 silver badges24 bronze badges 1- What is the implementation of addLoadEvent? May not be the problem, but can't reproduce it without that. Perhaps you can provide a jsfiddle that exhibits the problem? Or a link to a live example? – geocodezip Commented Dec 4, 2013 at 22:21
2 Answers
Reset to default 7You can't use the Google Maps Javascript API v3 until it is loaded. Your marker creation is running before the API is loaded. You need to move it in to the initialize function, which won't execute until the API is available.
<script>
function initialize() {
var mapOptions = {
zoom: 10,
center: new google.maps.LatLng(51.817116, 4.780616),
mapTypeId: google.maps.MapTypeId.ROADMAP,
panControl: false,
mapTypeControl: false,
scaleControl: false,
streetViewControl: false,
overviewMapControl: false,
rotateControl: false
};
var map = new google.maps.Map(document.getElementById('maps'),
mapOptions);
var customMarker = new google.maps.Marker({
position: new google.maps.LatLng(51.817116, 4.780616),
map: map
});
}; // end of initialize
function loadScript() {
var script = document.createElement('script');
script.type = 'text/javascript';
script.src = 'https://maps.googleapis./maps/api/js?v=3&sensor=false&' +
'callback=initialize';
document.body.appendChild(script);
}
addLoadEvent(loadScript);
</script>
You're defining your map variable locally within initialize
which means that none of the other functions can access it. Declare it globally outside of initialize
:
var map;
function initialize() {
// code
map = new google.maps.Map(document.getElementById('maps', mapOptions);
}