This website requires JavaScript.
Explore
Help
Sign In
ashatora
/
openlayers
Watch
1
Star
0
Fork
0
You've already forked openlayers
Code
Issues
Pull Requests
Projects
Releases
Wiki
Activity
Files
6c83a735197589956a69fda786203b440f7daa12
openlayers
/
lib
/
OpenLayers
History
crschmidt
6c83a73519
Controls each create their own div, which is then individually added to the viewPortDiv directly, rather than to a Controls Div. This may fix some issues with event handling of lower layers, and may be related to
#36
. It also prevents the need for the markers hack a couple commits back.
...
git-svn-id:
http://svn.openlayers.org/trunk/openlayers@206
dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
2006-05-20 03:47:46 +00:00
..
Control
Migrate Map MouseControls to MouseDefaults.js. This moves event handling into a control, where we can modify it and edit it without mucking about in the main map class, bringing this portion of the code more into line with the way other aspects of the controls situation work.
2006-05-20 02:29:39 +00:00
Layer
Change position to absolute, and round pixel values. This puts markers back in their place.
2006-05-19 21:36:56 +00:00
Tile
append markers and features.
2006-05-19 18:41:47 +00:00
Control.js
Controls each create their own div, which is then individually added to the viewPortDiv directly, rather than to a Controls Div. This may fix some issues with event handling of lower layers, and may be related to
#36
. It also prevents the need for the markers hack a couple commits back.
2006-05-20 03:47:46 +00:00
Events.js
fix failing test in test_Marker: Events.js should not loop through a null eventTypes var.
2006-05-18 12:29:27 +00:00
Feature.js
temporary hack to bring over functions from the old application.js
2006-05-19 18:40:32 +00:00
Icon.js
need to make sure a size has been declared before trying to set the offset. thank you automated testing for finding this one.
2006-05-18 05:25:09 +00:00
Layer.js
fixing bug introduced with [179]. basically, the Layer constructor should not be making new divs when it is initialized by a subclass. that was the point of [179]. the problem is that because of the way Layer.Grid is making the call to Layer's initialize() -- createing a new arguments array regardless of the orginal (ie although name is void, it nonetheless creates a new array with one element, a void element) well so then when init gets called it thinks it does have arguments. The real god's truth here is that we need a better way than if (arguments.length > 0) to distinguish between actual object creation and the creation of the classes.
2006-05-19 17:34:16 +00:00
Map.js
Controls each create their own div, which is then individually added to the viewPortDiv directly, rather than to a Controls Div. This may fix some issues with event handling of lower layers, and may be related to
#36
. It also prevents the need for the markers hack a couple commits back.
2006-05-20 03:47:46 +00:00
Marker.js
Remove temporary hacks from Marker.js.
2006-05-20 01:08:46 +00:00
Tile.js
make a destroy method and a clear grid. preventing circular refrences and memory leaks
2006-05-19 16:25:19 +00:00
Util.js
thank you testing. only set this if a value is passed in
2006-05-18 16:56:55 +00:00