Issue with ONLY IE8 using Google Maps V3
Issue with ONLY IE8 using Google Maps V3
myMap.fitBounds(bounds);
开发者_JAVA百科Not sure where to begin diagnosing this issue..
see here
You have a trailing comma on line 250 in your myLocationMeta array. That will cause issues in IE.
I'd check to make sure you don't have any other trailing commas.
Seems to point to an error on this line: clinics.js #259
var myLatLng = new google.maps.LatLng(myLocations[i][1], myLocations[i][2]);
"1 is null or not an object"
which is likely because you've exceeded your index (out of bounds).
If you have a trailing comma in your Array, you may have a "null" item in the last position.
精彩评论