Changeset 1526
- Timestamp:
- 10/02/06 17:48:21 (2 years ago)
- Files:
-
- trunk/openlayers/examples/ve.html (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Layer/VirtualEarth.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/openlayers/examples/ve.html
r1424 r1526 27 27 28 28 velayer = new OpenLayers.Layer.VirtualEarth( "VE", 29 { minZoomLevel: 4, maxZoomLevel: 6 });29 { minZoomLevel: 4, maxZoomLevel: 6, 'type': VEMapStyle.Aerial}); 30 30 map.addLayer(velayer); 31 31 trunk/openlayers/lib/OpenLayers/Layer/VirtualEarth.js
r1424 r1526 53 53 54 54 if (this.vemap != null) { 55 56 if (this.type != null) { 57 this.vemap.SetMapStyle(this.type); 58 this.type = null; 59 } 60 55 61 var olCenter = this.map.getCenter(); 56 62 var veCenter = this.getVELatLongFromOLLonLat(olCenter);
