お世話になっております。
そして、レコードを編集モードにして保存すると、
『You have included the Google Maps API multiple times on this page. This may cause unexpected errors.』というエラーがコンソール画面に表示されました。
このエラーは無視して差し支えないものなのでしょうか。また、表示させないにはどうしたらいいのでしょうか。
次に、サンプルコード内容についてですが、以下の部分のコードで何を行っているかわかりません。
単にライブラリをロードするだけではだめな理由を簡単に教えていただけたら幸いです。
var check = document.getElementsByName(‘map_latlng’);
if(check.length == 0){
// enable google maps to call document.write after onload event.
var nativeWrite = document.write;
document.write = function(html) {
var m = html.match(/script.+src=“([^”]+)"/);
if (m) {
load(m[1]);
} else {
nativeWrite(html);
}
};
// Google Map の API ライブラリをロードします
load(‘https://maps-api-ssl.google.com/maps/api/js?v=3&sensor=false’);
waitLoaded();
}