git-svn-id: http://svn.openlayers.org/trunk/openlayers@85 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
14 lines
251 B
JavaScript
14 lines
251 B
JavaScript
OpenLayers.Marker = Class.create();
|
|
OpenLayers.Marker.prototype = {
|
|
|
|
// icon: {OpenLayers.Icon} for marker
|
|
icon: null,
|
|
|
|
// latlon: {OpenLayers.LatLon} location of object
|
|
latlon: null,
|
|
|
|
initialize: function() {
|
|
|
|
}
|
|
}
|