1
私はその後、私はちょうどマップをペイントしたいが、それは文句を言わないGoogleマップと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());
任意のアイデア理由をログに記録する作業は、ipユーザーへの経度と緯度acordingを取得するのですか?
メインコードはOKのようですhttp://jsfiddle.net/As3JQ/12/