1
我有此JavaScript,Jquery的餅乾+谷歌地圖API 3經緯度
if ($.cookie("latlng")) {
myLatlng = new google.maps.LatLng($.cookie("latlng")); //problem here??
} else {
$.cookie("latlng", "0,0", { path: '/' });
myLatlng = new google.maps.LatLng(0,0);
}
該Cookie功能是使用https://github.com/carhartl/jquery-cookie。
我的問題是,如何將cookie的值傳遞給google.maps.LatLng?
在此先感謝!
我覺得這個解決問題,謝謝! – Peter 2011-01-28 05:35:43