Changes between Version 3 and Version 4 of MapGuideRfc13
- Timestamp:
- 02/08/07 15:48:44 (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TabularUnified MapGuideRfc13
v3 v4 23 23 == Overview == 24 24 25 Provide a mechanism to set the size of the tiles created and served from MapGuide.25 Provide a mechanism to set the size of the tiles created and served from !MapGuide. 26 26 27 27 == Motivation == … … 33 33 == Proposed Solution == 34 34 35 Add two parameters to the TileService section in serverconfig.ini 36 TileSizeX = 300 37 TileSizeY = 300 35 Add new parameters to the !TileService section in serverconfig.ini 36 [[BR]]TileSizeX = 300 37 [[BR]]TileSizeY = 300 38 [[BR]]!ImageFormat = PNG 38 39 39 40 If not specified, the Server will default to 300x300. 40 41 41 42 Add two additional APIs to !MgTileService 42 INT32 GetTileSizeX();43 INT32 GetTileSizeY();43 [[BR]]INT32 GetDefaultTileSizeX(); 44 [[BR]]INT32 GetDefaultTileSizeY(); 44 45 45 46 Modify mapframe.php, mapframe.jsp, mapframe.aspx, and ajaxmappane.templ to pull the tile size from the !MgTileService instead of simply hard coding the value.