1

我正在根据用户 ip 检索经度和纬度,然后我只想绘制地图,但它不起作用

function initialize() {
    console.log(geoip_latitude(), geoip_longitude());
    var myLatlng = new google.maps.LatLng(geoip_latitude(), geoip_longitude());
    var myOptions = {
        zoom: 8,
        center: myLatlng,
        mapTypeId: google.maps.MapTypeId.ROADMAP
    }
    var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
}


$(document).ready(function(){
    initialize();
});

萤火虫日志

google.maps.LatLng is not a constructor
[Parar en este error]   

var myLatlng = new google.maps.LatLng(geoip_latitude(), geoip_longitude());

知道为什么吗?

请在这里摆弄它http://jsfiddle.net/As3JQ/12/

4

1 回答 1

4

主要代码似乎还可以,我查看了您的 jsfiddle,我所做的只是添加

html, body, #map_canvas { height: 100% }​

到 CSS 区域,它对我来说很好用

于 2012-03-25T20:47:55.127 回答