git-svn-id: http://svn.openlayers.org/trunk/openlayers@102 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
36 lines
760 B
JavaScript
36 lines
760 B
JavaScript
OpenLayers.Marker = Class.create();
|
|
OpenLayers.Marker.prototype = {
|
|
|
|
/** @type OpenLayers.Icon */
|
|
icon: null,
|
|
|
|
/** location of object
|
|
* @type OpenLayers.LonLat */
|
|
lonlat: null,
|
|
|
|
/** the data object associated with the marker
|
|
* @type Object */
|
|
data: null,
|
|
|
|
/** @type */
|
|
events: null,
|
|
|
|
/** @type OpenLayers.Map */
|
|
map: null,
|
|
|
|
|
|
/**
|
|
* @param {OpenLayers.Icon} icon
|
|
* @param {OpenLayers.LonLat lonlat
|
|
*/
|
|
initialize: function(icon, lonlat) {
|
|
this.icon = icon;
|
|
this.lonlat = lonlat;
|
|
},
|
|
generateMarker: function(pixel) {
|
|
var markerObject;
|
|
// Create a div here, and set the location to the pixel above
|
|
return markerObject;
|
|
}
|
|
}
|