Fix map center consistency on map changes

This commit is contained in:
Mike Primm 2011-08-03 10:21:29 -05:00
parent 1d0b28c069
commit 64bd846115
5 changed files with 36 additions and 1 deletions

View file

@ -4,6 +4,9 @@ var DynmapProjection = L.Class.extend({
},
fromLocationToLatLng: function(location) {
throw "fromLocationToLatLng not implemented";
},
fromLatLngToLocation: function(location) {
return null;
}
});