谷歌地图错误未捕获TypeError:无法读取null的属性'offsetWidth'

时间:2016-03-14 18:22:48

标签: php jquery wordpress api google-maps

这是我为gmaps创建的函数

function createMap (qc,mess,ele){
        var myLatLng = qc;

          // Create a map object and specify the DOM element for display.
          var map = new google.maps.Map(document.getElementById(ele), {
            center: myLatLng,
            scrollwheel: false,
            zoom: 4
          });

          // Create a marker and set its position.
          var marker = new google.maps.Marker({
            map: map,
            position: myLatLng,
            title: mess
          });
    }

这是我的PHP从我的数据库生成的内容

<div id="1_map"></div>
 <script>
 var qc_1 = {lat:44.6309454, lng:-123.0913114}; 
createMap(qc_1,"text Message", "#1_map");
</script>

加载顺序是Google Maps API调用,带有createMap的javascript文件,然后是PHP生成的文本。

未捕获的TypeError:无法读取null的属性'offsetWidth'

1 个答案:

答案 0 :(得分:1)

document.getElementById(ele)不需要哈希符号,我不认为。

createMap(qc_1,"text Message", "1_map");

createMap(qc_1,"text Message", "#1_map");