I am trying to write a JavaScript to read information out of a table and put markers on a map, depending on the data(Coordinates are hidden in that table). For each row there will be a marker on the map.
I have written the Script with google-maps-apiv3, but I want to be independent of google and want to be able to switch to OpenLayers. I didn't invest much time in OpenLayers, but the markers I have seen in some examples, are plain ugly :S. On the other hand google-maps has restrictions and boundaries for free usage.
How would you write your JavaScript to be able to replace the implementations? I want to seperate my businesslogic(table to map+markers) out, decouple it from the map implementation. On what file and how do I bind/import the implementation? How to keep the JavaScript testable (I use Jasmine+Testacular)? I would use mocking if possible.
FYI: I am a Java guy, maybe my OO mind can't see the solution yet.