Files
openlayers/lib/OpenLayers/Icon.js

15 lines
270 B
JavaScript

OpenLayers.Icon = Class.create();
OpenLayers.Icon.prototype = {
// string: image url
url: null,
// {OpenLayers.Size}: size of image
size:null,
initialize: function(url, size) {
this.size = size;
this.url = url;
}
}