git-svn-id: http://svn.openlayers.org/trunk/openlayers@85 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
@@ -41,6 +41,8 @@ catch(e){
|
|||||||
"OpenLayers/Events.js",
|
"OpenLayers/Events.js",
|
||||||
"OpenLayers/Map.js",
|
"OpenLayers/Map.js",
|
||||||
"OpenLayers/Layer.js",
|
"OpenLayers/Layer.js",
|
||||||
|
"OpenLayers/Icon.js",
|
||||||
|
"OpenLayers/Marker.js",
|
||||||
"OpenLayers/Tile.js",
|
"OpenLayers/Tile.js",
|
||||||
"OpenLayers/Tile/Image.js",
|
"OpenLayers/Tile/Image.js",
|
||||||
"OpenLayers/Layer/Google.js",
|
"OpenLayers/Layer/Google.js",
|
||||||
|
|||||||
@@ -0,0 +1,13 @@
|
|||||||
|
OpenLayers.Icon = Class.create();
|
||||||
|
OpenLayers.Icon.prototype = {
|
||||||
|
|
||||||
|
// string: image url
|
||||||
|
url: null,
|
||||||
|
|
||||||
|
// {OpenLayers.Size}: size of image
|
||||||
|
size:null,
|
||||||
|
|
||||||
|
initialize: function() {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
OpenLayers.Marker = Class.create();
|
||||||
|
OpenLayers.Marker.prototype = {
|
||||||
|
|
||||||
|
// icon: {OpenLayers.Icon} for marker
|
||||||
|
icon: null,
|
||||||
|
|
||||||
|
// latlon: {OpenLayers.LatLon} location of object
|
||||||
|
latlon: null,
|
||||||
|
|
||||||
|
initialize: function() {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user