diff options
author | Diva Canto | 2011-06-12 15:37:42 -0700 |
---|---|---|
committer | Diva Canto | 2011-06-12 15:37:42 -0700 |
commit | fd57c91b4a10cf7ee1e94dc8fe4e81eb0d5bae3d (patch) | |
tree | 55907fbcea5962638275453301482190c4b989b0 /OpenSim/Services/Interfaces | |
parent | A few more cleanups on the way to close http://opensimulator.org/mantis/view.... (diff) | |
download | opensim-SC_OLD-fd57c91b4a10cf7ee1e94dc8fe4e81eb0d5bae3d.zip opensim-SC_OLD-fd57c91b4a10cf7ee1e94dc8fe4e81eb0d5bae3d.tar.gz opensim-SC_OLD-fd57c91b4a10cf7ee1e94dc8fe4e81eb0d5bae3d.tar.bz2 opensim-SC_OLD-fd57c91b4a10cf7ee1e94dc8fe4e81eb0d5bae3d.tar.xz |
First pass at making the V2 map work. Standalones only for now. There are some issues with the zoom level -- TBD.
Diffstat (limited to 'OpenSim/Services/Interfaces')
-rw-r--r-- | OpenSim/Services/Interfaces/IMapImageService.cs (renamed from OpenSim/Services/Interfaces/IMapService.cs) | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/OpenSim/Services/Interfaces/IMapService.cs b/OpenSim/Services/Interfaces/IMapImageService.cs index c70f484..a7b2cf1 100644 --- a/OpenSim/Services/Interfaces/IMapService.cs +++ b/OpenSim/Services/Interfaces/IMapImageService.cs | |||
@@ -31,8 +31,10 @@ using OpenMetaverse; | |||
31 | 31 | ||
32 | namespace OpenSim.Services.Interfaces | 32 | namespace OpenSim.Services.Interfaces |
33 | { | 33 | { |
34 | public interface IMapService | 34 | public interface IMapImageService |
35 | { | 35 | { |
36 | List<MapBlockData> GetMapBlocks(UUID scopeID, int minX, int minY, int maxX, int maxY); | 36 | //List<MapBlockData> GetMapBlocks(UUID scopeID, int minX, int minY, int maxX, int maxY); |
37 | bool AddMapTile(int x, int y, byte[] imageData, out string reason); | ||
38 | byte[] GetMapTile(string fileName, out string format); | ||
37 | } | 39 | } |
38 | } | 40 | } |