谷歌地图和GeoIP:从IP和绘制地图获取Lat?

时间:2012-03-25 20:15:18

标签: javascript google-maps geoip

我正在根据用户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();
});

Firebug记录

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/

进行操控

1 个答案:

答案 0 :(得分:4)

主要代码似乎没问题,我看了你的jsfiddle,我所做的只是添加

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

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