admin管理员组文章数量:1345056
I have been developing a JS widget
for the last 5 or 6 weeks. The idea is that it can be added to any site by simply adding a href to the remote .js file and also a DIV container with a given ID to contain the contents of the widget.
The widget makes extensive use of Google Map API and I am referencing it as follows:
.exp&libraries=geometry,places&callback=initializeGoogleMaps
When the widget is loaded, it will ask the user permission to check their location and then perform, amongst other operations, a simply geocoding for the location so that a marker can be plotted on the map.
Everything has been working perfectly and I must've tested the searching over 2,000 during development.
I deployed the widget yesterday and successfully embedded it into a host website - everything worked as perfectly as it always has done. This morning, however, my widget is falling over with Chrome's console reporting:
Uncaught RangeError: Maximum call stack size exceeded{main,geometry,places}.js:27 (anonymous function)VM530:33 cVM530:33 TT.(anonymous function).fitBounds{main,geometry,places}.js:48 (anonymous function){main,geometry,places}.js:26 Uf{main,geometry,places}.js:48 O.fitBoundsWRAPPostcodeLocator.js:1541 setupPageWRAPPostcodeLocator.js:964 jQuery.ajax.successjquery.js?time=95944:3 jjquery.js?time=95944:3 k.fireWithjquery.js?time=95944:12 xjquery.js?time=95944:12 b.onload.b.onreadystatechange
Since the widget last worked, no changes have been made to my code or the host, so I suspect something wrong with the Google API.
An example of my widget embedded into a dummy host can be seen at:
Having spent several hours trying to get to the bottom of this, I'm still non the wiser.
Any help or advice would be so much appreciated.
Thank you in advance,
Matt
I have been developing a JS widget
for the last 5 or 6 weeks. The idea is that it can be added to any site by simply adding a href to the remote .js file and also a DIV container with a given ID to contain the contents of the widget.
The widget makes extensive use of Google Map API and I am referencing it as follows:
https://maps.googleapis./maps/api/js?v=3.exp&libraries=geometry,places&callback=initializeGoogleMaps
When the widget is loaded, it will ask the user permission to check their location and then perform, amongst other operations, a simply geocoding for the location so that a marker can be plotted on the map.
Everything has been working perfectly and I must've tested the searching over 2,000 during development.
I deployed the widget yesterday and successfully embedded it into a host website - everything worked as perfectly as it always has done. This morning, however, my widget is falling over with Chrome's console reporting:
Uncaught RangeError: Maximum call stack size exceeded{main,geometry,places}.js:27 (anonymous function)VM530:33 cVM530:33 TT.(anonymous function).fitBounds{main,geometry,places}.js:48 (anonymous function){main,geometry,places}.js:26 Uf{main,geometry,places}.js:48 O.fitBoundsWRAPPostcodeLocator.js:1541 setupPageWRAPPostcodeLocator.js:964 jQuery.ajax.successjquery.js?time=95944:3 jjquery.js?time=95944:3 k.fireWithjquery.js?time=95944:12 xjquery.js?time=95944:12 b.onload.b.onreadystatechange
Since the widget last worked, no changes have been made to my code or the host, so I suspect something wrong with the Google API.
An example of my widget embedded into a dummy host can be seen at:
http://pcl.solsticecloud.co.uk
Having spent several hours trying to get to the bottom of this, I'm still non the wiser.
Any help or advice would be so much appreciated.
Thank you in advance,
Matt
Share Improve this question edited Dec 11, 2014 at 10:27 Syeda Zunaira 5,2074 gold badges41 silver badges72 bronze badges asked Dec 11, 2014 at 10:03 Matt AlexanderMatt Alexander 191 gold badge1 silver badge4 bronze badges 1- Don't use the experimental version in production, it can break at any time. – geocodezip Commented Dec 11, 2014 at 13:35
7 Answers
Reset to default 5Thanks Matt Alexander this was exactly the problem and the solution, however it seems that Google changed the names of the Location properties AGAIN, not .k and .D anymore, now its .A and .F!, take a look at the following console log:
For nowadays it's '.G' and '.K'. And as said - it's better to use '.lat()' and '.lng()'.
You can also use
keys = Object.keys(LatLng);
geometry.location[keys[0]]; // Obtain value for latitude
I have found the cause of this issue and have a fix.
I was using the following code:
address = document.getElementById("strSearch").value;
geocoder.geocode({ 'address': address, ponentRestrictions: { country: 'GB' } }, function (results, status) {
if (status == google.maps.GeocoderStatus.OK) {
toggleModal();
deleteMarkers();
deleteBanks();
searchSourceLatLng = new google.maps.LatLng(results[0].geometry.location.k, results[0].geometry.location.B);
setSearchPointPostcode(results, buildResults);
}
else {
callback();
}
})
The particular line that caused the issue is:
searchSourceLatLng = new google.maps.LatLng(results[0].geometry.location.k, results[0].geometry.location.B);
".B" has worked for weeks, but now it would seem that is no longer a valid property. Instead, ".D" works and so my code now works.
As the property was no longer valid, I had a LatLng object with a null value and this caused the map to crash when I tried to see my map boundaries.
I would love to know how or why this has changed in the API.
Also, a stupid question I'm sure, but why ".k" and ".D"? What's wrong with ".Lng" and ".Lat"?
Glad it's sorted though, just hope the API doesn't change again.
You can loop over the properties of location
and get the coordinates without accessing its properties directly:
geocoder.geocode({ 'address': value.address }, function (results, status) {
if (status === google.maps.GeocoderStatus.OK && results.length > 0) {
var coords = [];
for (var key in results[0].geometry.location) {
coords.push(results[0].geometry.location[key]);
}
return {
'latitude': coords[0],
'longitude': coords[1]
};
}
});
try with this one hope it will help you
var map = new google.maps.Map(mappnl.el.dom, {
zoom: 8,
center: {
lat: 52.132633,
lng: 5.291265999999999
},
mapTypeId: google.maps.MapTypeId.TERRAIN
});
var latlong = [];
var geocoder = new google.maps.Geocoder();
if(frmvalue.dir_postalcode_standard){
geocoder.geocode({
'address': frmvalue.dir_postalcode_standard
}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
slat = results[0].geometry.location.lat();
slng = results[0].geometry.location.lng();
latlong['standard'] = {
'lat': slat,
'lng': slng
};
var cityCircle = new google.maps.Circle({
strokeColor: '#00FF00',
strokeOpacity: 0.8,
strokeWeight: 1,
fillColor: '#00FF00',
fillOpacity: 0.15,
map: map,
center: {
lat: slat,
lng: slng
},
radius: frmvalue.dir_radius_standaard * 1000
});
map.setCenter({
lat: slat,
lng: slng
});
geocoder.geocode({
'address': frmvalue.dir_postalcode_extended
}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
elat = results[0].geometry.location.lat();
elng = results[0].geometry.location.lng();
latlong['extended'] = {
'lat': elat,
'lng': elng
};
var cityCircle = new google.maps.Circle({
strokeColor: '#FF0000',
strokeOpacity: 0.8,
strokeWeight: 1,
fillColor: '#FF0000',
fillOpacity: 0.15,
map: map,
center: {
lat: elat,
lng: elng
},
radius: frmvalue.dir_radius_extended * 1000
});
callback(latlong);
} else {
console.log("Geocode was not successful for the following reason: " + status);
}
});
} else {
console.log("Geocode was not successful for the following reason: " + status);
}
});
} else {
callback(false);
}
Sometimes this file has the problem : https://www.gstatic./charts/loader.js
So if you use mine it definitely works.
Instead of using this :
<script type="text/javascript" src="https://www.gstatic./charts/loader.js"></script>
Use this one:
google-chart-loader.js
<script src="~/Content/js/google-chart-loader.js"></script>
https://drive.google./open?id=1eOPtgJ9FoZ6917q3OcNPKGe3AT-PXIzg
本文标签: javascriptGoogle Map API v3Maximum call stack size exceededStack Overflow
版权声明:本文标题:javascript - Google Map API v3 - Maximum call stack size exceeded - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743750327a2532528.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论