0byt3m1n1
Path:
/
var
/
lib
/
vz
/
www
/
clients
/
client6
/
web11
/
web
/
wp-content
/
plugins
/
wp-google-maps
/
js
/
v8
/
[
Home
]
File: map-object.js
/** * @namespace WPGMZA * @module MapObject * @requires WPGMZA.EventDispatcher */ jQuery(function($) { /** * Base class for Map Objects (known as Features in Map Block), that is, markers, polygons, polylines, circles, rectangles and heatmaps. Implements functionality shared by all map objects, such as parsing geometry and serialization. * @class WPGMZA.MapObject * @constructor WPGMZA.MapObject * @memberof WPGMZA * @augments WPGMZA.EventDispatcher */ WPGMZA.MapObject = function(row) { var self = this; WPGMZA.assertInstanceOf(this, "MapObject"); WPGMZA.EventDispatcher.call(this); this.id = -1; this.guid = WPGMZA.guid(); this.modified = true; this.settings = {}; if(row) { for(var name in row) { if(name == "settings") { if(row["settings"] == null) this["settings"] = {}; else switch(typeof row["settings"]) { case "string": this["settings"] = JSON.parse(row[name]); break; case "object": this["settings"] = row[name]; break; default: throw new Error("Don't know how to interpret settings") break; } for(var name in this.settings) { var value = this.settings[name]; if(String(value).match(/^-?\d+$/)) this.settings[name] = parseInt(value); } } else this[name] = row[name]; } } } WPGMZA.MapObject.prototype = Object.create(WPGMZA.EventDispatcher.prototype); WPGMZA.MapObject.prototype.constructor = WPGMZA.MapObject; /** * Scans a string for all floating point numbers and build an array of latitude and longitude literals from the matched numbers * @method * @memberof WPGMZA.MapObject * @param {string} string The string to parse numbers from * @return {array} An array of LatLng literals parsed from the string */ WPGMZA.MapObject.prototype.parseGeometry = function(string) { var stripped, pairs, coords, results = []; stripped = string.replace(/[^ ,\d\.\-+e]/g, ""); pairs = stripped.split(","); for(var i = 0; i < pairs.length; i++) { coords = pairs[i].split(" "); results.push({ lat: parseFloat(coords[1]), lng: parseFloat(coords[0]) }); } return results; } /** * Returns a copy of this object as a JSON object for serializsation * @method * @memberof WPGMZA.MapObject * @return {object} This object as represented by JSON */ WPGMZA.MapObject.prototype.toJSON = function() { return { id: this.id, guid: this.guid, settings: this.settings }; } });