我正在尝试将 Google 地图的中心点存储到 cookie 中,并在下次加载页面时将地图恢复到最后一个位置。
当然,我可以将纬度和经度作为字符串或序列化数组或其他东西保存到 cookie 中,但我很好奇我是否可以将 Google Maps LatLng 对象 JSON 序列化到 cookie,然后稍后再恢复它。
我正在使用 JQuery 和这个库:http ://code.google.com/p/cookies/
我使用地图中的 LatLng 设置 cookie:
$.cookies.set( 'map_center', map.getCenter());
然后我尝试阅读它,期望序列化/反序列化将恢复我的对象......
var centerpointFromCookie = $.cookies.get('map_center);
map.setCenter(centerpointFromCookie);
但似乎没有保留对象类型。在脚本控制台中,这是 LatLng 对象在序列化并存储在 cookie 中之前的样子:
map.getCenter()
O
$a: 151.21950000000004
Za: -33.8688
__proto__: O
constructor: function O(a, b, c) {a-=0;b-=0;c||(a=Bd(a,-90,90),b=Cd(b,-180,180));this.Za=a;this.$a=b;}
equals: function (a) {return!a?k:Dd(this.lat(),a.lat())&&Dd(this.lng(),a.lng());}
lat: function () {return this[a];}
lng: function () {return this[a];}
toString: function () {return"("+this.lat()+", "+this.lng()+")";}
toUrlValue: function (a) {a=Hd(a)?a:6;return ae(this.lat(),a)+","+ae(this.lng(),a);}
__proto__: Object
这就是它之后的样子:
centerpointFromCookie
Object
$a: 151.21950000000004
Za: -33.8688
__proto__: Object
__defineGetter__: function __defineGetter__() {
__defineSetter__: function __defineSetter__() {
__lookupGetter__: function __lookupGetter__() {
__lookupSetter__: function __lookupSetter__() {
constructor: function Object() {
hasOwnProperty: function hasOwnProperty() {
isPrototypeOf: function isPrototypeOf() {
propertyIsEnumerable: function propertyIsEnumerable() {
toLocaleString: function toLocaleString() {
toString: function toString() {
valueOf: function valueOf() {
反序列化时是否需要将对象转换为 GoogleMapsLatLng 类型?我知道我可以只存储这些值,但我想了解如何正确地将这样的小对象序列化为 cookie。